Files
Syntrel/Dockerfile

8 lines
140 B
Docker
Raw Normal View History

2025-09-14 16:09:43 -04:00
FROM python:3.12.9-slim-bookworm
WORKDIR /bot
COPY . /bot
RUN python -m pip install -r requirements.txt
ENTRYPOINT [ "python", "bot.py" ]