diff --git a/Dockerfile b/Dockerfile index 2f8403c..96bc4bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,11 +5,7 @@ RUN pip install pipenv COPY Pipfile . RUN pipenv install --pre -COPY bot.py . +COPY bot.py *.json *.pickle /bot/ COPY modules modules -# googlecal: copy credentials.json and token.pickle if they exist -COPY *.json . -COPY *.pickle . - CMD [ "pipenv", "run", "python", "-u", "./bot.py" ]