first commit
Some checks failed
docker / docker-push (push) Failing after 3m32s

This commit is contained in:
2025-12-24 22:13:09 +03:00
commit 642fa81584
7 changed files with 125 additions and 0 deletions

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM python:3.13-bookworm
COPY ./src /src
COPY ./requirements.txt /src
RUN apt update
RUN pip install -r /app/requirements.txt
CMD [ "python", "/src/main.py" ]