2021-08-05 23:59:18 +01:00
|
|
|
FROM python:3.9.6-slim
|
2021-08-05 00:35:00 +01:00
|
|
|
RUN apt-get update -y && apt-get upgrade -y && apt-get install libopus0 -y
|
2021-08-04 15:17:13 +01:00
|
|
|
COPY . /usr/src/app
|
2021-08-04 15:11:34 +01:00
|
|
|
WORKDIR /usr/src/app
|
2021-07-07 15:00:44 +01:00
|
|
|
RUN pip install --upgrade pip
|
2021-08-04 14:52:27 +01:00
|
|
|
RUN pip install -r requirements.txt
|
2021-07-07 15:00:44 +01:00
|
|
|
CMD python3 -u ./bot.py
|