2023-09-14 22:13:47 +00:00
|
|
|
FROM python:3.11-alpine
|
|
|
|
RUN apk add --no-cache ffmpeg
|
|
|
|
COPY requirements.txt /app/
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt
|
2023-09-14 22:16:24 +00:00
|
|
|
COPY bot.py /app/
|
2023-09-14 22:13:47 +00:00
|
|
|
ENTRYPOINT ["python", "/app/bot.py"]
|