This commit is contained in:
Arthur K. 2025-05-29 16:33:47 +03:00
commit 79492a47c8
Signed by: wzray
GPG key ID: B97F30FDC4636357
4 changed files with 141 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM python:3.12-alpine
STOPSIGNAL SIGINT
EXPOSE 80/tcp
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY app.py .
CMD ["python3", "-u", "app.py"]