From b33e1a23b145865418f607d39a87daa7922b1952 Mon Sep 17 00:00:00 2001 From: Leon Sandøy Date: Wed, 3 Jul 2019 15:39:38 +0200 Subject: Fixing the entrypoint location - forgot that we created an app root dir. --- docker/app/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/app/Dockerfile b/docker/app/Dockerfile index c91c013a..903e7dc6 100644 --- a/docker/app/Dockerfile +++ b/docker/app/Dockerfile @@ -47,6 +47,6 @@ RUN apt-get purge -y \ libpq-dev # Migrate, collect and start the app. -RUN chmod +x /docker/app/scripts/migrate.sh -ENTRYPOINT ["/docker/app/scripts/migrate.sh"] +RUN chmod +x /app/docker/app/scripts/migrate.sh +ENTRYPOINT ["/app/docker/app/scripts/migrate.sh"] CMD ["uwsgi", "--ini", "docker/app/uwsgi.ini"] -- cgit v1.2.3