Initial commit: lightweight webserver with X-Server-Time header

This commit is contained in:
Arch Agent
2026-05-06 08:26:24 +02:00
commit e746fca434
3 changed files with 42 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
FROM python:3-alpine
WORKDIR /app
COPY server.py .
EXPOSE 8000
CMD ["python3", "server.py"]