From 15d30df59c4765a15980122c10c06424a286e19a Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 6 Aug 2023 22:29:57 +0700 Subject: [PATCH] enabled executable shells for docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f5678b6..3c176e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,8 @@ COPY app.env . COPY start.sh . COPY wait-for.sh . COPY db/migration ./migration +RUN chmod +x ./start.sh +RUN chmod +x ./wait-for.sh EXPOSE 8080 CMD [ "/app/main" ]