Add Dockerfile
This commit is contained in:
parent
4e2b3dcb02
commit
0a8927f598
1 changed files with 7 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal 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"]
|
Loading…
Reference in a new issue