Update Keycloak development server to 15.1.0 (#1708)
This commit is contained in:
parent
67d2c8617f
commit
0ca302f356
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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`);
|
||||
|
|
Loading…
Reference in a new issue