geas-bot/app/Dockerfile

6 lines
172 B
Docker
Raw Normal View History

2021-07-26 21:14:50 +01:00
FROM python:3.9.6-buster
2021-08-04 15:04:47 +01:00
COPY ./requirements.txt /usr/src/app
2021-08-04 15:11:34 +01:00
WORKDIR /usr/src/app
RUN pip install --upgrade pip
2021-08-04 14:52:27 +01:00
RUN pip install -r requirements.txt
CMD python3 -u ./bot.py