Skip to content

Commit

Permalink
point outerloop dockerfiles to icr for liberty images
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Mauer <[email protected]>
  • Loading branch information
ajm01 committed Jan 26, 2022
1 parent d29c6ae commit 570ed56
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion customize-ol.env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LIBERTY_RUNTIME_VERSION="22.0.0.1"

# Liberty image that serves as a base for building the image for outer-loop deployments.
# This image is used in the final stage of the outer loop Dockerfile.
OUTERLOOP_LIBERTY_IMAGE="openliberty/open-liberty:\$\{LIBERTY_VERSION\}-full-java11-openj9-ubi"
OUTERLOOP_LIBERTY_IMAGE="icr.io/appcafe/open-liberty:\$\{LIBERTY_VERSION\}-full-java11-openj9-ubi"

#-----------------------------------------------------------------
# Maven specific customization settings.
Expand Down
2 changes: 1 addition & 1 deletion customize-wl.env
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LIBERTY_RUNTIME_VERSION="22.0.0.1"

# Liberty image that serves as a base for building the image for outer-loop deployments.
# This image is used in the final stage of the outer loop Dockerfile.
OUTERLOOP_LIBERTY_IMAGE="ibmcom/websphere-liberty:\$\{LIBERTY_VERSION\}-full-java11-openj9-ubi"
OUTERLOOP_LIBERTY_IMAGE="icr.io/appcafe/websphere-liberty:\$\{LIBERTY_VERSION\}-full-java11-openj9-ubi"

#-----------------------------------------------------------------
# Maven specific customization settings.
Expand Down
2 changes: 1 addition & 1 deletion stack/open-liberty/outer-loop/gradle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN cd /work/outer-loop-app/build/wlp/usr/servers; \
if [ -d ../shared ]; then mv ../shared/* /work/shared/; fi

# Step 2: Package Liberty image
FROM openliberty/open-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi
FROM icr.io/appcafe/open-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi

ARG WLP_INSTALL_PATH

Expand Down
2 changes: 1 addition & 1 deletion stack/open-liberty/outer-loop/maven/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN cd $WLP_INSTALL_PATH/usr/servers && \
if [ -d ../shared ]; then mv ../shared/* /work/shared/; fi

# Step 2: Package Liberty image
FROM openliberty/open-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi
FROM icr.io/appcafe/open-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi

ARG WLP_INSTALL_PATH

Expand Down
2 changes: 1 addition & 1 deletion stack/websphere-liberty/outer-loop/gradle/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN cd /work/outer-loop-app/build/wlp/usr/servers; \
if [ -d ../shared ]; then mv ../shared/* /work/shared/; fi

# Step 2: Package Liberty image
FROM ibmcom/websphere-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi
FROM icr.io/appcafe/websphere-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi

ARG WLP_INSTALL_PATH

Expand Down
2 changes: 1 addition & 1 deletion stack/websphere-liberty/outer-loop/maven/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN cd $WLP_INSTALL_PATH/usr/servers && \
if [ -d ../shared ]; then mv ../shared/* /work/shared/; fi

# Step 2: Package Liberty image
FROM ibmcom/websphere-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi
FROM icr.io/appcafe/websphere-liberty:${LIBERTY_VERSION}-full-java11-openj9-ubi

ARG WLP_INSTALL_PATH

Expand Down

0 comments on commit 570ed56

Please sign in to comment.