Steven Polley
65a7ac04f2
All checks were successful
continuous-integration/drone/push Build is passing
14 lines
313 B
Docker
14 lines
313 B
Docker
FROM scratch
|
|
|
|
COPY public public
|
|
COPY templates templates
|
|
COPY covid19-edmonton .
|
|
|
|
# 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
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD [ "./covid19-edmonton", "-web"]
|