Add Dockerfile

This commit is contained in:
Davide Depau 2023-09-15 00:13:47 +02:00
parent 4e2b3dcb02
commit 0a8927f598

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM python:3.11-alpine
RUN apk add --no-cache ffmpeg
COPY requirements.txt /app/
COPY bot.py /app/
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "/app/bot.py"]