mirror of
https://github.com/SantaSpeen/Rcon-VK-Bot.git
synced 2025-08-18 09:05:53 +00:00
12 lines
162 B
Docker
12 lines
162 B
Docker
FROM python:3.12.1-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENV IN_DOCKER=1
|
|
COPY ./src .
|
|
|
|
CMD [ "python", "./main.py" ]
|