Update Keycloak development server to 15.1.0 (#1708)

This commit is contained in:
Jon Koops 2021-12-15 14:00:30 +01:00 committed by GitHub
parent 67d2c8617f
commit 0ca302f356
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ COPY . .
RUN mvn -f /app/keycloak-theme/pom.xml install
FROM quay.io/keycloak/keycloak:15.0.2
FROM quay.io/keycloak/keycloak:15.1.0
COPY --from=builder /app/keycloak-theme/target/classes /opt/jboss/keycloak/themes/keycloak.v2
EXPOSE 8080

View file

@ -11,7 +11,7 @@ import cliProgress from "cli-progress";
import colors from "colors";
const args = process.argv.slice(2);
const version = args[0] && !args[0].startsWith("-") ? args[0] : "15.0.2";
const version = args[0] && !args[0].startsWith("-") ? args[0] : "15.1.0";
const folder = "server";
const fileName = path.join(folder, `keycloak-${version}.tar.gz`);