diff --git a/Dockerfile b/Dockerfile index 96878e4..3e821bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,10 +32,11 @@ WORKDIR /code COPY requirements/base.txt . COPY requirements/production.txt . COPY requirements/geeksbot.txt . -COPY .env . -COPY entrypoint . RUN pip install -r production.txt RUN pip install -r geeksbot.txt +COPY .env . +COPY entrypoint . + CMD ["./entrypoint"]