mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 11:40:12 +01:00
10 lines
220 B
Docker
10 lines
220 B
Docker
FROM python:3.12.9-slim-bookworm
|
|
|
|
WORKDIR /bot
|
|
COPY . /bot
|
|
|
|
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN python -m pip install -r requirements.txt
|
|
|
|
ENTRYPOINT [ "python", "bot.py" ] |