This commit is contained in:
2026-03-07 03:01:43 +00:00
commit 365cb6692e
8 changed files with 240 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Simple example app - a minimal Python web server
FROM python:3.11-slim
WORKDIR /app
# Copy application
COPY app.py .
EXPOSE 8080
CMD ["python", "-u", "app.py"]