Ignore missing json and pickle

This commit is contained in:
Ville Ranki 2019-12-30 22:34:16 +02:00
parent 0822230eb9
commit a6a9334780
1 changed files with 1 additions and 5 deletions

View File

@ -5,11 +5,7 @@ RUN pip install pipenv
COPY Pipfile . COPY Pipfile .
RUN pipenv install --pre RUN pipenv install --pre
COPY bot.py . COPY bot.py *.json *.pickle /bot/
COPY modules modules COPY modules modules
# googlecal: copy credentials.json and token.pickle if they exist
COPY *.json .
COPY *.pickle .
CMD [ "pipenv", "run", "python", "-u", "./bot.py" ] CMD [ "pipenv", "run", "python", "-u", "./bot.py" ]