Skip to content
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

🤖: Update build recipes for SP7 #1703

Merged
merged 2 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openjdk-21-devel-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN set -euo pipefail; zypper -n in --no-recommends java-21-openjdk-devel maven;
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
LABEL org.opencontainers.image.title="SLE BCI OpenJDK 21 development"
LABEL org.opencontainers.image.description="OpenJDK 21 development container based on the SLE Base Container Image."
LABEL org.opencontainers.image.version="21"
LABEL org.opencontainers.image.version="%%java_version%%"
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="SUSE LLC"
Expand Down
5 changes: 5 additions & 0 deletions openjdk-21-devel-image/_service
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<services>
<service mode="buildtime" name="docker_label_helper"/>
<service mode="buildtime" name="kiwi_metainfo_helper"/>
<service name="replace_using_package_version" mode="buildtime">
<param name="file">Dockerfile</param>
<param name="regex">%%java_version%%</param>
<param name="package">java-21-openjdk-devel</param>
</service>
</services>
5 changes: 5 additions & 0 deletions openjdk-21-devel-image/openjdk-21-devel-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Sep 20 11:50:02 UTC 2024 - Dirk Mueller <[email protected]>

- set full version on oci labels

-------------------------------------------------------------------
Thu Sep 12 10:37:35 UTC 2024 - Dirk Mueller <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion openjdk-21-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN set -euo pipefail; zypper -n in --no-recommends java-21-openjdk curl finduti
LABEL org.opencontainers.image.authors="SUSE LLC (https://www.suse.com/)"
LABEL org.opencontainers.image.title="SLE BCI OpenJDK 21 runtime"
LABEL org.opencontainers.image.description="OpenJDK 21 runtime container based on the SLE Base Container Image."
LABEL org.opencontainers.image.version="21"
LABEL org.opencontainers.image.version="%%java_version%%"
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
LABEL org.opencontainers.image.created="%BUILDTIME%"
LABEL org.opencontainers.image.vendor="SUSE LLC"
Expand Down
5 changes: 5 additions & 0 deletions openjdk-21-image/_service
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<services>
<service mode="buildtime" name="docker_label_helper"/>
<service mode="buildtime" name="kiwi_metainfo_helper"/>
<service name="replace_using_package_version" mode="buildtime">
<param name="file">Dockerfile</param>
<param name="regex">%%java_version%%</param>
<param name="package">java-21-openjdk</param>
</service>
</services>
5 changes: 5 additions & 0 deletions openjdk-21-image/openjdk-21-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Sep 20 11:50:02 UTC 2024 - Dirk Mueller <[email protected]>

- set full version on oci labels

-------------------------------------------------------------------
Thu Sep 12 10:37:35 UTC 2024 - Dirk Mueller <[email protected]>

Expand Down
Loading