From ae13ab2ba8d597c6d50c7e8abf411c1f05687bcc Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Tue, 20 Sep 2016 20:47:41 +0200 Subject: [PATCH] Moved entrypoint path --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index cc00105..bb1942c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,14 +11,11 @@ RUN apt-get update -qq && grep "^[^#;]" requirements.apt | xargs apt-get install COPY ./requirements /requirements RUN pip install -r /requirements/production.txt -COPY ./compose/django/gunicorn.sh /run/gunicorn.sh -COPY ./compose/django/entrypoint.sh /run/entrypoint.sh - -ENTRYPOINT ["/run/entrypoint.sh"] - COPY . /app # Since youtube-dl code is updated fairly often, we split it here RUN pip install --upgrade youtube-dl WORKDIR /app + +ENTRYPOINT ["./compose/django/entrypoint.sh"] -- GitLab