add Dockerfile

This commit is contained in:
2026-09-23 15:13:39 +03:00
parent 553131a3f2
commit b7a0388822
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends docker.io \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
RUN pip install --no-cache-dir flask requests
COPY app.py .
CMD ["python", "app.py"]