seperate proxy for rewriting openid config

This commit is contained in:
2024-12-05 14:35:31 +01:00
parent 99de812ed5
commit 97d44d3d2f
5 changed files with 45 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
RUN pip install --no-cache-dir flask gunicorn requests
COPY app.py .
EXPOSE 5000
CMD ["gunicorn", "-w", "1", "-b", "0.0.0.0:5000", "app:app"]