seperate proxy for rewriting openid config
This commit is contained in:
6
authentik/proxy/Dockerfile
Normal file
6
authentik/proxy/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user