Dockerize

This commit is contained in:
PROFERIS - Mi³osz Stocki
2026-07-07 12:09:24 +02:00
parent 7582b949b4
commit 22fcc25c5e
4 changed files with 46 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
FROM python:3-alpine
WORKDIR /app
# Copy only the necessary web assets
COPY index.html favicon.svg ./
COPY web/ ./web/
# Expose a random non-standard port
EXPOSE 8421
# Run the python HTTP server
CMD ["python", "-m", "http.server", "8421"]