2021-08-06 12:20:25 +01:00
|
|
|
FROM python:slim
|
2021-09-11 17:23:14 +01:00
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update -y
|
|
|
|
RUN apt-get upgrade -y
|
|
|
|
RUN apt-get install libopus0 -y
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
RUN apt-get autoremove -y
|
2021-07-07 15:00:44 +01:00
|
|
|
CMD python3 -u ./bot.py
|