hemppa/Dockerfile

19 lines
337 B
Docker
Raw Normal View History

2020-02-05 00:18:58 +02:00
FROM python:3.7-slim
2019-12-09 19:54:57 +02:00
WORKDIR /bot
2020-02-05 00:18:58 +02:00
2019-12-09 19:54:57 +02:00
COPY Pipfile .
2020-02-05 00:18:58 +02:00
RUN pip install pipenv && \
pipenv install --pre && \
2020-02-05 00:18:58 +02:00
pipenv install --deploy --system && \
rm -r /root/.cache/* && \
rm -r /root/.local/*
2019-12-09 19:54:57 +02:00
2019-12-30 22:34:16 +02:00
COPY bot.py *.json *.pickle /bot/
COPY config config
COPY modules modules
VOLUME /bot/config
2020-02-05 00:18:58 +02:00
CMD [ "python", "-u", "./bot.py" ]