v2.1: Security - Captcha, Admin-Login, Auth-Decorator

This commit is contained in:
Peter
2026-05-16 12:21:10 +00:00
parent 1ae070f82f
commit 9f8c7fb78d
6 changed files with 1286 additions and 2 deletions
+1 -2
View File
@@ -2,7 +2,7 @@ FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir flask flask-cors requests
RUN pip install --no-cache-dir flask flask-cors werkzeug requests
COPY app/ ./
@@ -12,7 +12,6 @@ EXPOSE 8080
ENV PORT=8080
ENV DATA_DIR=/data
ENV OLLAMA_URL=http://192.168.0.150:11434
VOLUME ["/data"]