hemppa/Dockerfile

12 lines
172 B
Docker

FROM python:3
WORKDIR /bot
RUN pip install pipenv
COPY Pipfile .
RUN pipenv install --skip-lock --system
COPY bot.py .
COPY modules .
CMD [ "python", "-u", "./bot.py" ]