initial export
Some checks failed
Codex Worker / run-codex-worker (push) Has been cancelled

This commit is contained in:
devRaGonSa
2026-06-02 16:23:16 +02:00
commit 0cf98a1be9
311 changed files with 45086 additions and 0 deletions

12
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /srv/frontend
COPY . /srv/frontend
EXPOSE 8080
CMD ["python", "-m", "http.server", "8080", "--bind", "0.0.0.0", "--directory", "/srv/frontend"]