Files
geas-bot/app/Dockerfile
2021-08-04 17:13:30 +01:00

7 lines
187 B
Docker

FROM python:3.9.6-buster
COPY . /usr/src/app
WORKDIR /usr/src/app
RUN apt-get install libopus-dev
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
CMD python3 -u ./bot.py