This commit is contained in:
2026-02-10 22:47:23 +03:00
commit bc69e456da
5 changed files with 179 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.12-trixie
WORKDIR /app
COPY . .
RUN pip3 install -r req.txt
RUN mkdir -p /app/data
CMD ["python", "main.py"]