12 lines
299 B
Docker
12 lines
299 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt update && apt install -y wget
|
|
|
|
WORKDIR /tmp
|
|
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && apt install -y ./google-chrome-stable_current_amd64.deb
|
|
|
|
ADD ./moneyforward /usr/local/bin/moneyforward
|
|
|
|
CMD ["/usr/local/bin/moneyforward"]
|
|
|