feat: add static folder to docker image

This commit is contained in:
Yanislav Igonin 2021-09-05 13:42:03 +03:00
parent 3fd7f1c3fb
commit 32216118a7

View File

@ -1,6 +1,7 @@
FROM busybox
WORKDIR /app
COPY templates/ templates/
COPY static/ static/
COPY micrach ./
RUN chmod +x /app/micrach
ENTRYPOINT ["/app/micrach"]