-
Notifications
You must be signed in to change notification settings - Fork 123
23.0.0.10 release #545
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
23.0.0.10 release #545
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
9490dd6
Merge pull request #537 from WASdev/vNext
wraschke ffb820d
Update readme infinispan links
idlewis e4f6d66
Merge pull request #540 from WASdev/infinispan-links
idlewis d07801f
Merge pull request #543 from WASdev/vNext
leochr 4d3242c
Update icr-images.md to list 23.0.0.9 images
leochr 4beb213
Merge pull request #544 from WASdev/leochr-patch-10
leochr 1c032c2
Updates for the release of 23.0.0.10
wraschke f57ef6d
Add resources directory
wraschke dae61b1
Restore 23.0.0.9 in Travis file, correct PARENT_IMAGE names
wraschke ef92a6a
Update year in copyright
wraschke bdc48d7
Another version insertion in PARENT_IMAGE
wraschke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # WebSphere Application Server Developer Edition Liberty image | ||
|
|
||
| Under this directory you can find build scripts for WebSphere Application Server Liberty container images: | ||
|
|
||
| * [WebSphere Application Server Developer Edition Liberty, Kernel](kernel) | ||
| * [WebSphere Application Server Developer Edition Liberty, Full](full) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| # (C) Copyright IBM Corporation 2023. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java8-ibmjava-ubi | ||
| FROM $PARENT_IMAGE AS installBundle | ||
|
|
||
| ARG VERBOSE=false | ||
| ARG REPOSITORIES_PROPERTIES="" | ||
|
|
||
| # If there is a local copy of the repository use that instead | ||
| COPY resources/ /tmp/ | ||
|
|
||
| # Install the base bundle | ||
| RUN set -eux; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| mkdir /opt/ibm/wlp/etc/; \ | ||
| echo "$REPOSITORIES_PROPERTIES" > /opt/ibm/wlp/etc/repositories.properties; \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| rm /opt/ibm/wlp/etc/repositories.properties; \ | ||
| elif [ -f /tmp/wlpRepo.zip ]; then \ | ||
| installUtility install --acceptLicense baseBundle --from=/tmp/wlpRepo.zip; \ | ||
| else \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| fi; \ | ||
| rm -rf /output/workarea /output/logs; \ | ||
| find /opt/ibm/wlp ! -perm -g=rw -print0 | xargs -r -0 chmod g+rw; | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java8-ibmjava-ubi | ||
| FROM $PARENT_IMAGE | ||
| ARG VERBOSE=false | ||
|
|
||
| # Copy the runtime | ||
| COPY --from=installBundle --chown=1001:0 /opt/ibm/wlp /opt/ibm/wlp | ||
|
|
||
| COPY --chown=1001:0 server.xml /config/ | ||
|
|
||
| # Create a new SCC layer | ||
| RUN if [ "$OPENJ9_SCC" = "true" ]; then populate_scc.sh; fi \ | ||
| && rm -rf /output/messaging /output/resources/security /logs/* $WLP_OUTPUT_DIR/.classCache \ | ||
| && find /opt/ibm/wlp/output ! -path "*.classCache*" ! -perm -g=rwx -print0 | xargs -0 -r chmod g+rwx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| # (C) Copyright IBM Corporation 2023. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java11-openj9-ubi | ||
| FROM $PARENT_IMAGE AS installBundle | ||
|
|
||
| ARG VERBOSE=false | ||
| ARG REPOSITORIES_PROPERTIES="" | ||
|
|
||
| # If there is a local copy of the repository use that instead | ||
| COPY resources/ /tmp/ | ||
|
|
||
| # Install the base bundle | ||
| RUN set -eux; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| mkdir /opt/ibm/wlp/etc/; \ | ||
| echo "$REPOSITORIES_PROPERTIES" > /opt/ibm/wlp/etc/repositories.properties; \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| rm /opt/ibm/wlp/etc/repositories.properties; \ | ||
| elif [ -f /tmp/wlpRepo.zip ]; then \ | ||
| installUtility install --acceptLicense baseBundle --from=/tmp/wlpRepo.zip; \ | ||
| else \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| fi; \ | ||
| rm -rf /output/workarea /output/logs; \ | ||
| find /opt/ibm/wlp ! -perm -g=rw -print0 | xargs -r -0 chmod g+rw; | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java11-openj9-ubi | ||
| FROM $PARENT_IMAGE | ||
| ARG VERBOSE=false | ||
|
|
||
| # Copy the runtime | ||
| COPY --from=installBundle --chown=1001:0 /opt/ibm/wlp /opt/ibm/wlp | ||
|
|
||
| COPY --chown=1001:0 server.xml /config/ | ||
|
|
||
| # Create a new SCC layer | ||
| RUN if [ "$OPENJ9_SCC" = "true" ]; then populate_scc.sh; fi \ | ||
| && rm -rf /output/messaging /output/resources/security /logs/* $WLP_OUTPUT_DIR/.classCache \ | ||
| && find /opt/ibm/wlp/output ! -perm -g=rwx -print0 | xargs -0 -r chmod g+rwx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| # (C) Copyright IBM Corporation 2023. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java17-openj9-ubi | ||
| FROM $PARENT_IMAGE AS installBundle | ||
|
|
||
| ARG VERBOSE=false | ||
| ARG REPOSITORIES_PROPERTIES="" | ||
|
|
||
| # If there is a local copy of the repository use that instead | ||
| COPY resources/ /tmp/ | ||
|
|
||
| # Install the base bundle | ||
| RUN set -eux; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| mkdir /opt/ibm/wlp/etc/; \ | ||
| echo "$REPOSITORIES_PROPERTIES" > /opt/ibm/wlp/etc/repositories.properties; \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| rm /opt/ibm/wlp/etc/repositories.properties; \ | ||
| elif [ -f /tmp/wlpRepo.zip ]; then \ | ||
| installUtility install --acceptLicense baseBundle --from=/tmp/wlpRepo.zip; \ | ||
| else \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| fi; \ | ||
| rm -rf /output/workarea /output/logs; \ | ||
| find /opt/ibm/wlp ! -perm -g=rw -print0 | xargs -r -0 chmod g+rw; | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java17-openj9-ubi | ||
| FROM $PARENT_IMAGE | ||
| ARG VERBOSE=false | ||
|
|
||
| # Copy the runtime | ||
| COPY --from=installBundle --chown=1001:0 /opt/ibm/wlp /opt/ibm/wlp | ||
|
|
||
| COPY --chown=1001:0 server.xml /config/ | ||
|
|
||
| # Create a new SCC layer | ||
| RUN if [ "$OPENJ9_SCC" = "true" ]; then populate_scc.sh; fi \ | ||
| && rm -rf /output/messaging /output/resources/security /logs/* $WLP_OUTPUT_DIR/.classCache \ | ||
| && find /opt/ibm/wlp/output ! -perm -g=rwx -print0 | xargs -0 -r chmod g+rwx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| # (C) Copyright IBM Corporation 2023. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java8-openj9-ubi | ||
| FROM $PARENT_IMAGE AS installBundle | ||
|
|
||
| ARG VERBOSE=false | ||
| ARG REPOSITORIES_PROPERTIES="" | ||
|
|
||
| # If there is a local copy of the repository use that instead | ||
| COPY resources/ /tmp/ | ||
|
|
||
| # Install the base bundle | ||
| RUN set -eux; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| mkdir /opt/ibm/wlp/etc/; \ | ||
| echo "$REPOSITORIES_PROPERTIES" > /opt/ibm/wlp/etc/repositories.properties; \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| rm /opt/ibm/wlp/etc/repositories.properties; \ | ||
| elif [ -f /tmp/wlpRepo.zip ]; then \ | ||
| installUtility install --acceptLicense baseBundle --from=/tmp/wlpRepo.zip; \ | ||
| else \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| fi; \ | ||
| rm -rf /output/workarea /output/logs; \ | ||
| find /opt/ibm/wlp ! -perm -g=rw -print0 | xargs -r -0 chmod g+rw; | ||
|
|
||
| ARG PARENT_IMAGE=icr.io/appcafe/websphere-liberty:23.0.0.10-kernel-java8-openj9-ubi | ||
| FROM $PARENT_IMAGE | ||
| ARG VERBOSE=false | ||
|
|
||
| # Copy the runtime | ||
| COPY --from=installBundle --chown=1001:0 /opt/ibm/wlp /opt/ibm/wlp | ||
|
|
||
| COPY --chown=1001:0 server.xml /config/ | ||
|
|
||
| # Create a new SCC layer | ||
| RUN if [ "$OPENJ9_SCC" = "true" ]; then populate_scc.sh; fi \ | ||
| && rm -rf /output/messaging /output/resources/security /logs/* $WLP_OUTPUT_DIR/.classCache \ | ||
| && find /opt/ibm/wlp/output ! -perm -g=rwx -print0 | xargs -0 -r chmod g+rwx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| # (C) Copyright IBM Corporation 2023. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| FROM websphere-liberty:23.0.0.10-kernel-java8-ibmjava | ||
|
|
||
| ARG VERBOSE=false | ||
| ARG REPOSITORIES_PROPERTIES="" | ||
|
|
||
| # Install the base bundle | ||
| RUN set -eux; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| mkdir /opt/ibm/wlp/etc/; \ | ||
| echo "$REPOSITORIES_PROPERTIES" > /opt/ibm/wlp/etc/repositories.properties; \ | ||
| fi; \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| rm /opt/ibm/wlp/etc/repositories.properties; \ | ||
| fi; \ | ||
| rm -rf /output/workarea /output/logs; \ | ||
| find /opt/ibm/wlp ! -perm -g=rw -print0 | xargs -r -0 chmod g+rw; | ||
|
|
||
| COPY --chown=1001:0 server.xml /config/ | ||
|
|
||
| # Create a new SCC layer | ||
| RUN if [ "$OPENJ9_SCC" = "true" ]; then populate_scc.sh; fi \ | ||
| && rm -rf /output/messaging /output/resources/security /logs/* $WLP_OUTPUT_DIR/.classCache \ | ||
| && find /opt/ibm/wlp/output ! -path "*.classCache*" ! -perm -g=rwx -print0 | xargs -0 -r chmod g+rwx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| # (C) Copyright IBM Corporation 2023. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| FROM websphere-liberty:23.0.0.10-kernel-java11-openj9 | ||
|
|
||
| ARG VERBOSE=false | ||
| ARG REPOSITORIES_PROPERTIES="" | ||
|
|
||
| # Install the base bundle | ||
| RUN set -eux; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| mkdir /opt/ibm/wlp/etc/; \ | ||
| echo "$REPOSITORIES_PROPERTIES" > /opt/ibm/wlp/etc/repositories.properties; \ | ||
| fi; \ | ||
| installUtility install --acceptLicense baseBundle; \ | ||
| if [ ! -z "$REPOSITORIES_PROPERTIES" ]; then \ | ||
| rm /opt/ibm/wlp/etc/repositories.properties; \ | ||
| fi; \ | ||
| rm -rf /output/workarea /output/logs; \ | ||
| find /opt/ibm/wlp ! -perm -g=rw -print0 | xargs -r -0 chmod g+rw; | ||
|
|
||
| COPY --chown=1001:0 server.xml /config/ | ||
|
|
||
| # Create a new SCC layer | ||
| RUN if [ "$OPENJ9_SCC" = "true" ]; then populate_scc.sh; fi \ | ||
| && rm -rf /output/messaging /output/resources/security /logs/* $WLP_OUTPUT_DIR/.classCache \ | ||
| && find /opt/ibm/wlp/output ! -perm -g=rwx -print0 | xargs -0 -r chmod g+rwx |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
23.0.0.9 shouldn't be removed as it's still maintained
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file isn't used anymore but I will update it.