mirror of
https://github.com/neoarz/Syntrel.git
synced 2025-12-25 03:40:11 +01:00
8 lines
140 B
Docker
8 lines
140 B
Docker
|
|
FROM python:3.12.9-slim-bookworm
|
||
|
|
|
||
|
|
WORKDIR /bot
|
||
|
|
COPY . /bot
|
||
|
|
|
||
|
|
RUN python -m pip install -r requirements.txt
|
||
|
|
|
||
|
|
ENTRYPOINT [ "python", "bot.py" ]
|