From 3e4f384c1bc752d3ec6ad7d5e13eccd66660837e Mon Sep 17 00:00:00 2001 From: Yanislav Igonin Date: Sat, 11 Sep 2021 01:22:48 +0300 Subject: [PATCH] Revert "feat: docker image: busybox -> scratch" This reverts commit 90ea60d69845004276b2a7614b283a8ee2047208. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0316408..e50fa7f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ -FROM scratch +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