Changed app for proxy and https++

This commit is contained in:
2026-01-22 16:52:46 +01:00
parent 7ed6100f05
commit 21f27e0d27
3 changed files with 25 additions and 15 deletions

View File

@@ -15,8 +15,9 @@ COPY reset_password.py .
COPY templates/ templates/
COPY static/ static/
# Create data directory
RUN mkdir -p /app/data
# Create data and session directories
RUN mkdir -p /app/data /app/data/flask_sessions && \
chmod 777 /app/data/flask_sessions
# Copy entrypoint script and make scripts executable
COPY docker-entrypoint.sh .