Update Keycloak development server to version 17.0.0 (#2105)
This commit is contained in:
parent
215ac539a5
commit
7e74ee58d2
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@ COPY . .
|
|||
|
||||
RUN mvn -f /app/keycloak-theme/pom.xml install
|
||||
|
||||
FROM quay.io/keycloak/keycloak:16.1.0
|
||||
FROM quay.io/keycloak/keycloak:17.0.0-legacy
|
||||
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] : "16.1.0";
|
||||
const version = args[0] && !args[0].startsWith("-") ? args[0] : "17.0.0";
|
||||
|
||||
const folder = "server";
|
||||
const fileName = path.join(folder, `keycloak-${version}.tar.gz`);
|
||||
|
@ -110,7 +110,7 @@ if (!fs.existsSync(fileName)) {
|
|||
});
|
||||
|
||||
request(
|
||||
`https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-${version}.tar.gz`,
|
||||
`https://github.com/keycloak/keycloak/releases/download/${version}/keycloak-legacy-${version}.tar.gz`,
|
||||
file,
|
||||
progressBar
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue