geas-bot/app/Dockerfile

7 lines
251 B
Docker
Raw Normal View History

FROM python:slim
2021-08-04 15:17:13 +01:00
COPY . /usr/src/app
2021-08-04 15:11:34 +01:00
WORKDIR /usr/src/app
RUN apt-get update -y && apt-get upgrade -y && apt-get install libopus0 -y && \
pip install --upgrade pip && pip install -r requirements.txt && \
apt-get autoremove -y
CMD python3 -u ./bot.py