10 lines
125 B
Docker
10 lines
125 B
Docker
|
FROM scratch
|
||
|
|
||
|
COPY public public
|
||
|
COPY templates templates
|
||
|
COPY covid19-edmonton .
|
||
|
|
||
|
EXPOSE 8080
|
||
|
|
||
|
CMD [ "./covid19-edmonton" ]
|