first commit

This commit is contained in:
2026-03-11 01:18:59 +03:00
parent 277615084e
commit 9956edc8ce
10 changed files with 1622 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.13-bookworm
COPY ./src /src
COPY ./requirements.txt /src
RUN apt update
RUN apt install pipx
RUN pipx install poetry
CMD [ "poetry", "install" ]
CMD [ "poetry", "run", "python", "/src/main.py" ]