2020-04-25 07:09:15 +00:00
|
|
|
FROM scratch
|
|
|
|
|
|
|
|
COPY public public
|
|
|
|
COPY templates templates
|
|
|
|
COPY covid19-edmonton .
|
|
|
|
|
2020-04-25 07:16:48 +00:00
|
|
|
# These must be supplied. In the CICD pipeline, .drone.yml, this is available from the build environment
|
|
|
|
COPY ca-certificates.crt /etc/ssl/certs/
|
|
|
|
COPY zoneinfo.zip ./zoneinfo.zip
|
|
|
|
|
2020-04-25 07:09:15 +00:00
|
|
|
EXPOSE 8080
|
|
|
|
|
2020-04-25 07:12:32 +00:00
|
|
|
CMD [ "./covid19-edmonton", "-web"]
|