1
0
Fork 0
This commit is contained in:
Arthur K. 2026-05-03 14:23:08 +03:00
commit 3c583aac15
Signed by: wzray
GPG key ID: B97F30FDC4636357
2 changed files with 472 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
FROM python:3.14
WORKDIR /app
COPY main.py .
STOPSIGNAL SIGINT
ENV PORT=80
EXPOSE 80
CMD ["python3", "-u", "main.py"]