Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mise a jour vers version 26.0.1 #14

Open
wants to merge 8 commits into
base: release/v26
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run_keycloak_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
echo "KC_HEALTH_ENABLED=true" >> .env
echo "KC_PROXY_HEADERS=forwarded" >> .env
echo "KC_HTTP_MANAGEMENT_PORT=9000" >> .env
echo "IMG_VERSION=25.0.6" >> .env
echo "IMG_VERSION=26.0.7" >> .env
echo "ENV=dev" >> .env

- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Définition de la version de Keycloak à utiliser comme argument pour être réutilisable dans le Dockerfile
ARG IMG_VERSION=25.0.6
ARG IMG_VERSION=26.0.7
ARG ENV=upgrade

# Utilisation de Red Hat Universal Base Image 9 comme image de base pour le pré-build
Expand Down Expand Up @@ -48,7 +48,7 @@ COPY --from=providers-builder --chown=1000 providers/2fa-email-authenticator/tar
WORKDIR /opt/keycloak

# Construction du serveur Keycloak avec les configurations et providers précédemment ajoutés
RUN /opt/keycloak/bin/kc.sh build --health-enabled=true
RUN /opt/keycloak/bin/kc.sh build --health-enabled=true --metrics-enabled=true --features=token-exchange

# Étape finale de création de l'image Keycloak
FROM quay.io/keycloak/keycloak:${IMG_VERSION} as keycloak
Expand Down
Loading