Files
Syntrel/Dockerfile

10 lines
220 B
Docker
Raw Permalink Normal View History

2025-09-14 16:09:43 -04:00
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/*
2025-09-14 16:09:43 -04:00
RUN python -m pip install -r requirements.txt
ENTRYPOINT [ "python", "bot.py" ]