Unverified Commit e424f6ff authored by Jonas Brunsgaard's avatar Jonas Brunsgaard Committed by GitHub

chore: Bumped flaskoidc dependency (#689)

Signed-off-by: 's avatarJonas Brunsgaard <jonas.brunsgaard@gmail.com>
parent 1898a88e
...@@ -28,11 +28,11 @@ ENV FRONTEND_SVC_CONFIG_MODULE_CLASS amundsen_application.oidc_config.OidcConfig ...@@ -28,11 +28,11 @@ ENV FRONTEND_SVC_CONFIG_MODULE_CLASS amundsen_application.oidc_config.OidcConfig
ENV APP_WRAPPER flaskoidc ENV APP_WRAPPER flaskoidc
ENV APP_WRAPPER_CLASS FlaskOIDC ENV APP_WRAPPER_CLASS FlaskOIDC
ENV FLASK_OIDC_WHITELISTED_ENDPOINTS status,healthcheck,health ENV FLASK_OIDC_WHITELISTED_ENDPOINTS status,healthcheck,health
ENV FLASK_OIDC_SQLALCHEMY_DATABASE_URI sqlite:///sessions.db ENV SQLALCHEMY_DATABASE_URI sqlite:///sessions.db
# You will need to set these environment variables in order to use the oidc image # You will need to set these environment variables in order to use the oidc image
# FLASK_OIDC_CLIENT_SECRETS - a path to a client_secrets.json file # OIDC_CLIENT_SECRETS - a path to a client_secrets.json file
# FLASK_OIDC_SECRET_KEY - A secret key from your oidc provider # OIDC_SECRET_KEY - A secret key from your oidc provider
# You will also need to mount a volume for the clients_secrets.json file. # You will also need to mount a volume for the clients_secrets.json file.
FROM base as release FROM base as release
...@@ -52,7 +52,7 @@ setup( ...@@ -52,7 +52,7 @@ setup(
dependency_links=[], dependency_links=[],
install_requires=requirements, install_requires=requirements,
extras_require={ extras_require={
'oidc': ['flaskoidc==0.0.2'] 'oidc': ['flaskoidc==0.1.0']
}, },
python_requires=">=3.6", python_requires=">=3.6",
entry_points=""" entry_points="""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment