From d113b96bf4ec99a2cddb17371716ad0300cc840d Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Tue, 6 Aug 2019 11:42:51 -0400 Subject: [PATCH] Move entrypoint --- Dockerfile | 1 + app/entrypoint.sh => entrypoint.sh | 0 2 files changed, 1 insertion(+) rename app/entrypoint.sh => entrypoint.sh (100%) mode change 100644 => 100755 diff --git a/Dockerfile b/Dockerfile index c3acf64..803166f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM "python:3.7-alpine" LABEL maintainer="Cabillot Julien " COPY app /app +COPY entrypoint.sh /app/entrypoint.sh WORKDIR "/app" diff --git a/app/entrypoint.sh b/entrypoint.sh old mode 100644 new mode 100755 similarity index 100% rename from app/entrypoint.sh rename to entrypoint.sh