This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SECRET=.... | |
FIEF_CLIENT_ID=... | |
FIEF_CLIENT_SECRET=... | |
ENCRYPTION_KEY=... | |
PORT=8000 | |
ALLOW_ORIGIN_REGEX=https://* | |
FORWARDED_ALLOW_IPS=* | |
# If you want to use a nested subdomain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ghcr.io/fief-dev/fief:latest | |
COPY ./start.sh /start.sh | |
COPY ./start_fief.py /start_fief.py | |
RUN chmod +x /start.sh && \ | |
pip install anyio | |
CMD [ "sh", "-c", "/start.sh" ] |