-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #657 from SUSE/for-deploy-Tumbleweed
🤖: Update build recipes for Tumbleweed
- Loading branch information
Showing
9 changed files
with
99 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 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,33 @@ | ||
#!ExclusiveArch: aarch64 x86_64 ppc64le s390x | ||
# SPDX-License-Identifier: MIT | ||
#!BuildTag: opensuse/bci/openjdk-devel:21 | ||
#!BuildTag: opensuse/bci/openjdk-devel:21-%RELEASE% | ||
|
||
FROM opensuse/bci/openjdk:21 | ||
|
||
MAINTAINER openSUSE (https://www.opensuse.org/) | ||
|
||
# Define labels according to https://en.opensuse.org/Building_derived_containers | ||
# labelprefix=org.opensuse.bci.openjdk.devel | ||
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI OpenJDK 21 development" | ||
LABEL org.opencontainers.image.description="OpenJDK 21 development container based on the openSUSE Tumbleweed Base Container Image." | ||
LABEL org.opencontainers.image.version="21" | ||
LABEL org.opencontainers.image.url="https://www.opensuse.org" | ||
LABEL org.opencontainers.image.created="%BUILDTIME%" | ||
LABEL org.opencontainers.image.vendor="openSUSE Project" | ||
LABEL org.opencontainers.image.source="%SOURCEURL%" | ||
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/bci/openjdk-devel:21-%RELEASE%" | ||
LABEL org.openbuildservice.disturl="%DISTURL%" | ||
LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime" | ||
LABEL org.opensuse.release-stage="released" | ||
|
||
# endlabelprefix | ||
|
||
RUN set -euo pipefail; zypper -n in --no-recommends java-21-openjdk-devel git-core maven; zypper -n clean; rm -rf /var/log/* | ||
ENV JAVA_BINDIR="/usr/lib64/jvm/java-21-openjdk-21/bin" | ||
ENV JAVA_HOME="/usr/lib64/jvm/java-21-openjdk-21" | ||
ENV JAVA_ROOT="/usr/lib64/jvm/java-21-openjdk-21" | ||
ENV JAVA_VERSION="21" | ||
|
||
CMD ["/usr/bin/jshell"] | ||
RUN set -euo pipefail; [ -d $JAVA_HOME ]; [ -d $JAVA_BINDIR ]; [ -f "$JAVA_BINDIR/java" ] && [ -x "$JAVA_BINDIR/java" ] |
This file contains 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,7 @@ | ||
<constraints> | ||
<hardware> | ||
<disk> | ||
<size unit="G">6</size> | ||
</disk> | ||
</hardware> | ||
</constraints> |
This file contains 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,4 @@ | ||
<services> | ||
<service mode="buildtime" name="docker_label_helper"/> | ||
<service mode="buildtime" name="kiwi_metainfo_helper"/> | ||
</services> |
This file contains 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,4 @@ | ||
------------------------------------------------------------------- | ||
Fri Sep 22 10:47:41 UTC 2023 - SUSE Update Bot <[email protected]> | ||
|
||
- First version of the OpenJDK 21 development BCI |
This file contains 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,32 @@ | ||
#!ExclusiveArch: aarch64 x86_64 ppc64le s390x | ||
# SPDX-License-Identifier: MIT | ||
#!BuildTag: opensuse/bci/openjdk:21 | ||
#!BuildTag: opensuse/bci/openjdk:21-%RELEASE% | ||
|
||
FROM opensuse/tumbleweed:latest | ||
|
||
MAINTAINER openSUSE (https://www.opensuse.org/) | ||
|
||
# Define labels according to https://en.opensuse.org/Building_derived_containers | ||
# labelprefix=org.opensuse.bci.openjdk | ||
LABEL org.opencontainers.image.title="openSUSE Tumbleweed BCI OpenJDK 21 runtime" | ||
LABEL org.opencontainers.image.description="OpenJDK 21 runtime container based on the openSUSE Tumbleweed Base Container Image." | ||
LABEL org.opencontainers.image.version="21" | ||
LABEL org.opencontainers.image.url="https://www.opensuse.org" | ||
LABEL org.opencontainers.image.created="%BUILDTIME%" | ||
LABEL org.opencontainers.image.vendor="openSUSE Project" | ||
LABEL org.opencontainers.image.source="%SOURCEURL%" | ||
LABEL org.opensuse.reference="registry.opensuse.org/opensuse/bci/openjdk:21-%RELEASE%" | ||
LABEL org.openbuildservice.disturl="%DISTURL%" | ||
LABEL org.opensuse.lifecycle-url="https://en.opensuse.org/Lifetime" | ||
LABEL org.opensuse.release-stage="released" | ||
|
||
# endlabelprefix | ||
|
||
RUN set -euo pipefail; zypper -n in --no-recommends java-21-openjdk; zypper -n clean; rm -rf /var/log/* | ||
ENV JAVA_BINDIR="/usr/lib64/jvm/java-21-openjdk-21/bin" | ||
ENV JAVA_HOME="/usr/lib64/jvm/java-21-openjdk-21" | ||
ENV JAVA_ROOT="/usr/lib64/jvm/java-21-openjdk-21" | ||
ENV JAVA_VERSION="21" | ||
|
||
RUN set -euo pipefail; [ -d $JAVA_HOME ]; [ -d $JAVA_BINDIR ]; [ -f "$JAVA_BINDIR/java" ] && [ -x "$JAVA_BINDIR/java" ] |
This file contains 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,7 @@ | ||
<constraints> | ||
<hardware> | ||
<disk> | ||
<size unit="G">6</size> | ||
</disk> | ||
</hardware> | ||
</constraints> |
This file contains 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,4 @@ | ||
<services> | ||
<service mode="buildtime" name="docker_label_helper"/> | ||
<service mode="buildtime" name="kiwi_metainfo_helper"/> | ||
</services> |
This file contains 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,4 @@ | ||
------------------------------------------------------------------- | ||
Fri Sep 22 10:47:41 UTC 2023 - SUSE Update Bot <[email protected]> | ||
|
||
- First version of the OpenJDK 21 runtime BCI |