From 41c86040a44a36084090bdde4cda0eb1368fe129 Mon Sep 17 00:00:00 2001 From: Alexander Nikolaev Date: Wed, 15 May 2024 11:18:42 +0300 Subject: [PATCH] Fix docker image building. (#28809) Signed-off-by: Alexander Nikolaev --- quarkus/container/README.md | 4 ++-- quarkus/container/ubi-null.sh | 0 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 quarkus/container/ubi-null.sh diff --git a/quarkus/container/README.md b/quarkus/container/README.md index b146b0bf17..0d7b3f7b75 100644 --- a/quarkus/container/README.md +++ b/quarkus/container/README.md @@ -5,9 +5,9 @@ For more information, see the [Running Keycloak in a container guide](https://ww It is possible to download the Keycloak distribution from a URL: - docker build --build-arg KEYCLOAK_DIST=http://:/keycloak-.tar.gz . -t + docker build --build-arg KEYCLOAK_DIST=http://:/keycloak-.tar.gz -t . Alternatively, you need to build the local distribution first, then copy the distributions tar package in the `container` folder and point the build command to use the image: cp $KEYCLOAK_SOURCE/quarkus/dist/target/keycloak-.tar.gz . - docker build --build-arg KEYCLOAK_DIST=keycloak-.tar.gz . -t + docker build --build-arg KEYCLOAK_DIST=keycloak-.tar.gz -t . diff --git a/quarkus/container/ubi-null.sh b/quarkus/container/ubi-null.sh old mode 100644 new mode 100755