From a96c599aa3cc9afbfc633441d6ebfaa0aee3a260 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cibrahim0814=E2=80=9D?= Date: Tue, 6 Aug 2019 14:09:54 -0700 Subject: [PATCH] correct directory for entrypoint shell file --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7a87beb..fce493f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,6 @@ COPY . /app RUN apk add --no-cache curl bash git -RUN chmod +x /entrypoint.sh +RUN chmod +x /app/entrypoint.sh -ENTRYPOINT [ "/entrypoint.sh" ] \ No newline at end of file +ENTRYPOINT [ "/app/entrypoint.sh" ] \ No newline at end of file