Update Dockerfile

This commit is contained in:
Davide Depau 2023-09-15 00:16:24 +02:00
parent 0a8927f598
commit dfa929cf69

View file

@ -1,7 +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
COPY bot.py /app/
ENTRYPOINT ["python", "/app/bot.py"]