feat: env vars

This commit is contained in:
2026-04-11 19:20:40 +02:00
parent f70a893fd4
commit a6a7d1bf80
4 changed files with 47 additions and 15 deletions
+6 -1
View File
@@ -2,7 +2,12 @@ FROM python:3.14-alpine
WORKDIR /app
VOLUME [ "/app/data" ]
VOLUME [ "/data" ]
ENV HOST=localhost
ENV PORT=8080
ENV BIND=0.0.0.0
ENV DATA_DIR=/data
RUN PIP_ROOT_USER_ACTION=ignore python3 -m pip install uv