hemppa/Dockerfile

11 lines
157 B
Docker
Raw Normal View History

2019-12-09 19:54:57 +02:00
FROM python:3
WORKDIR /bot
RUN pip install pipenv
COPY Pipfile .
RUN pipenv install --skip-lock --system
COPY bot.py .
CMD [ "python", "-u", "./bot.py" ]