diff --git a/Dockerfile b/Dockerfile
index cc00105f0db3032f8b7b1412beaf5067532caab7..bb1942c22770eac242bfede554fd957de3fe835f 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"]