From 32216118a717f680f182bd4464b519fb59a09bb8 Mon Sep 17 00:00:00 2001 From: Yanislav Igonin Date: Sun, 5 Sep 2021 13:42:03 +0300 Subject: [PATCH] feat: add static folder to docker image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b9bb02c..e50fa7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM busybox WORKDIR /app COPY templates/ templates/ +COPY static/ static/ COPY micrach ./ RUN chmod +x /app/micrach ENTRYPOINT ["/app/micrach"] \ No newline at end of file