This commit is contained in:
bacon
2024-03-20 22:21:09 +03:00
parent da9755e948
commit fc492d1ba8
7 changed files with 183 additions and 2 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:latest
LABEL authors="bacon"
WORKDIR /app
COPY requirements.txt /app
RUN apt-get update && apt-get install ffmpeg -y
RUN python3 -m venv venv/
CMD source venv/bin/activate
RUN pip install -r requirements.txt
COPY src/ /app
ENTRYPOINT ["python", "bot.py"]