2023-11-12 12:04:22 -07:00
|
|
|
FROM scratch
|
|
|
|
LABEL maintainer="himself@stevenpolley.net"
|
|
|
|
COPY data data
|
2023-11-13 18:08:52 -07:00
|
|
|
COPY public public
|
|
|
|
COPY templates templates
|
2023-11-12 12:04:22 -07:00
|
|
|
COPY ca-certificates.crt /etc/ssl/certs/
|
2023-11-13 16:17:20 -07:00
|
|
|
COPY zoneinfo.zip zoneinfo.zip
|
2023-11-12 12:04:22 -07:00
|
|
|
COPY ynab-portfolio-monitor .
|
|
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
|
2023-11-13 16:17:20 -07:00
|
|
|
ENV ZONEINFO zoneinfo.zip
|
2023-11-12 12:04:22 -07:00
|
|
|
CMD [ "./ynab-portfolio-monitor" ]
|