Update Keycloak development server to 16.1.0
This commit is contained in:
parent
a83793291c
commit
b0b339e1b5
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ COPY . .
|
||||||
|
|
||||||
RUN mvn -f /app/keycloak-theme/pom.xml install
|
RUN mvn -f /app/keycloak-theme/pom.xml install
|
||||||
|
|
||||||
FROM quay.io/keycloak/keycloak:15.1.0
|
FROM quay.io/keycloak/keycloak:16.1.0
|
||||||
COPY --from=builder /app/keycloak-theme/target/classes /opt/jboss/keycloak/themes/keycloak.v2
|
COPY --from=builder /app/keycloak-theme/target/classes /opt/jboss/keycloak/themes/keycloak.v2
|
||||||
|
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
|
|
|
@ -11,7 +11,7 @@ import cliProgress from "cli-progress";
|
||||||
import colors from "colors";
|
import colors from "colors";
|
||||||
|
|
||||||
const args = process.argv.slice(2);
|
const args = process.argv.slice(2);
|
||||||
const version = args[0] && !args[0].startsWith("-") ? args[0] : "15.1.0";
|
const version = args[0] && !args[0].startsWith("-") ? args[0] : "16.1.0";
|
||||||
|
|
||||||
const folder = "server";
|
const folder = "server";
|
||||||
const fileName = path.join(folder, `keycloak-${version}.tar.gz`);
|
const fileName = path.join(folder, `keycloak-${version}.tar.gz`);
|
||||||
|
|
Loading…
Reference in a new issue