Move edge HTML to templates, add jinja2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
buenosairesam
2026-01-26 21:00:50 -03:00
parent 3106bc835e
commit 91f95d55a5
3 changed files with 360 additions and 357 deletions

View File

@@ -2,9 +2,10 @@ FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn[standard] websockets
RUN pip install --no-cache-dir fastapi uvicorn[standard] websockets jinja2
COPY edge.py .
COPY templates/ templates/
ENV API_KEY=""
ENV LOG_LEVEL=INFO