Skip to content

Commit

Permalink
Merge pull request #1917 from SUSE/for-deploy-Tumbleweed
Browse files Browse the repository at this point in the history
🤖: Update build recipes for Tumbleweed
  • Loading branch information
dirkmueller authored Oct 29, 2024
2 parents 51688ea + 223c383 commit e6c126e
Show file tree
Hide file tree
Showing 79 changed files with 207 additions and 52 deletions.
1 change: 1 addition & 0 deletions apache-tomcat-10-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!ExclusiveArch: do-not-build
#!ForceMultiVersion

# For this container we only build the Dockerfile.$flavor builds.
1 change: 0 additions & 1 deletion apache-tomcat-10-image/Dockerfile.openjdk17
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk17-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk17
#!BuildTag: opensuse/apache-tomcat:10.1-openjdk17-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:10.1-openjdk17

FROM opensuse/bci/bci-micro:latest AS target
Expand Down
1 change: 0 additions & 1 deletion apache-tomcat-10-image/Dockerfile.openjdk21
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk21-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk21
#!BuildTag: opensuse/apache-tomcat:10.1-openjdk21-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:10.1-openjdk21

FROM opensuse/bci/bci-micro:latest AS target
Expand Down
1 change: 0 additions & 1 deletion apache-tomcat-10-image/Dockerfile.openjdk23
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk23-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk23
#!BuildTag: opensuse/apache-tomcat:10.1-openjdk23-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:10.1-openjdk23

FROM opensuse/bci/bci-micro:latest AS target
Expand Down
5 changes: 5 additions & 0 deletions apache-tomcat-10-image/apache-tomcat-10-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 28 07:48:53 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 1 addition & 0 deletions apache-tomcat-9-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!ExclusiveArch: do-not-build
#!ForceMultiVersion

# For this container we only build the Dockerfile.$flavor builds.
1 change: 0 additions & 1 deletion apache-tomcat-9-image/Dockerfile.openjdk17
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk17-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:%%tomcat_version%%-openjdk17
#!BuildTag: opensuse/apache-tomcat:9-openjdk17-%RELEASE%
#!BuildTag: opensuse/apache-tomcat:9-openjdk17

FROM opensuse/bci/bci-micro:latest AS target
Expand Down
5 changes: 5 additions & 0 deletions apache-tomcat-9-image/apache-tomcat-9-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 28 07:48:53 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
5 changes: 2 additions & 3 deletions gcc-12-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@

#!BuildTag: opensuse/bci/gcc:%%gcc_minor_version%%-%RELEASE%
#!BuildTag: opensuse/bci/gcc:%%gcc_minor_version%%
#!BuildTag: opensuse/bci/gcc:12-%RELEASE%
#!BuildTag: opensuse/bci/gcc:12

FROM opensuse/tumbleweed:latest

RUN set -euo pipefail; \
zypper -n install --no-recommends gcc12 gcc12-c++ make curl findutils gawk git-core procps util-linux; \
zypper -n install --no-recommends gcc12 gcc12-c++ gcc12-fortran make curl findutils gawk git-core procps util-linux; \
zypper -n clean; \
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}

Expand All @@ -48,6 +47,6 @@ ENV GCC_VERSION="%%gcc_minor_version%%"

# symlink all versioned gcc & g++ binaries to unversioned
# ones in /usr/local/bin so that plain gcc works
RUN set -euo pipefail; for gcc_bin in $(rpm -ql gcc12 gcc12-c++ |grep ^/usr/bin/ ); do \
RUN set -euo pipefail; for gcc_bin in $(rpm -ql gcc12 gcc12-c++ gcc12-fortran |grep ^/usr/bin/ ); do \
ln -sf $gcc_bin $(echo "$gcc_bin" | sed -e 's|/usr/bin/|/usr/local/bin/|' -e 's|-12$||'); \
done
3 changes: 1 addition & 2 deletions gcc-12-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ using `zypper`. This includes the following:
### Available compiler frontends

The GNU Compiler Collections supports a wide range of frontends. The container
image ships the C and C++ frontends available as `gcc` and `g++`
image ships the C, C++ and fortran frontends available as `gcc`, `g++` and `gfortran`
respectively. The following additional frontends can be installed from the
repository:
- `gcc12-fortran` for Fortran support
- `gcc12-ada` for the Ada frontend (GNAT)
- `gcc12-go` for the Go frontend
- `gcc12-objc` and `gcc12-obj-c++` for the Objective C and Objective C++
Expand Down
10 changes: 10 additions & 0 deletions gcc-12-image/gcc-12-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Tue Oct 29 14:22:15 UTC 2024 - SUSE Update Bot <[email protected]>

- add fortran

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
5 changes: 2 additions & 3 deletions gcc-13-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@

#!BuildTag: opensuse/bci/gcc:%%gcc_minor_version%%-%RELEASE%
#!BuildTag: opensuse/bci/gcc:%%gcc_minor_version%%
#!BuildTag: opensuse/bci/gcc:13-%RELEASE%
#!BuildTag: opensuse/bci/gcc:13

FROM opensuse/tumbleweed:latest

RUN set -euo pipefail; \
zypper -n install --no-recommends gcc13 gcc13-c++ make curl findutils gawk git-core procps util-linux; \
zypper -n install --no-recommends gcc13 gcc13-c++ gcc13-fortran make curl findutils gawk git-core procps util-linux; \
zypper -n clean; \
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}

Expand All @@ -48,6 +47,6 @@ ENV GCC_VERSION="%%gcc_minor_version%%"

# symlink all versioned gcc & g++ binaries to unversioned
# ones in /usr/local/bin so that plain gcc works
RUN set -euo pipefail; for gcc_bin in $(rpm -ql gcc13 gcc13-c++ |grep ^/usr/bin/ ); do \
RUN set -euo pipefail; for gcc_bin in $(rpm -ql gcc13 gcc13-c++ gcc13-fortran |grep ^/usr/bin/ ); do \
ln -sf $gcc_bin $(echo "$gcc_bin" | sed -e 's|/usr/bin/|/usr/local/bin/|' -e 's|-13$||'); \
done
3 changes: 1 addition & 2 deletions gcc-13-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ using `zypper`. This includes the following:
### Available compiler frontends

The GNU Compiler Collections supports a wide range of frontends. The container
image ships the C and C++ frontends available as `gcc` and `g++`
image ships the C, C++ and fortran frontends available as `gcc`, `g++` and `gfortran`
respectively. The following additional frontends can be installed from the
repository:
- `gcc13-fortran` for Fortran support
- `gcc13-ada` for the Ada frontend (GNAT)
- `gcc13-go` for the Go frontend
- `gcc13-objc` and `gcc13-obj-c++` for the Objective C and Objective C++
Expand Down
10 changes: 10 additions & 0 deletions gcc-13-image/gcc-13-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Tue Oct 29 14:22:15 UTC 2024 - SUSE Update Bot <[email protected]>

- add fortran

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
3 changes: 1 addition & 2 deletions gcc-14-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,13 @@

#!BuildTag: opensuse/bci/gcc:%%gcc_minor_version%%-%RELEASE%
#!BuildTag: opensuse/bci/gcc:%%gcc_minor_version%%
#!BuildTag: opensuse/bci/gcc:14-%RELEASE%
#!BuildTag: opensuse/bci/gcc:14
#!BuildTag: opensuse/bci/gcc:latest

FROM opensuse/tumbleweed:latest

RUN set -euo pipefail; \
zypper -n install --no-recommends gcc14 gcc14-c++ make gcc gcc-c++ curl findutils gawk git-core procps util-linux; \
zypper -n install --no-recommends gcc14 gcc14-c++ gcc14-fortran make gcc gcc-c++ gcc-fortran curl findutils gawk git-core procps util-linux; \
zypper -n clean; \
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}

Expand Down
3 changes: 1 addition & 2 deletions gcc-14-image/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ using `zypper`. This includes the following:
### Available compiler frontends

The GNU Compiler Collections supports a wide range of frontends. The container
image ships the C and C++ frontends available as `gcc` and `g++`
image ships the C, C++ and fortran frontends available as `gcc`, `g++` and `gfortran`
respectively. The following additional frontends can be installed from the
repository:
- `gcc14-fortran` for Fortran support
- `gcc14-ada` for the Ada frontend (GNAT)
- `gcc14-go` for the Go frontend
- `gcc14-objc` and `gcc14-obj-c++` for the Objective C and Objective C++
Expand Down
10 changes: 10 additions & 0 deletions gcc-14-image/gcc-14-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Tue Oct 29 14:22:15 UTC 2024 - SUSE Update Bot <[email protected]>

- add fortran

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
5 changes: 5 additions & 0 deletions git-image/git-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
4 changes: 2 additions & 2 deletions git-image/git-image.kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ https://github.com/SUSE/BCI-dockerfile-generator
Please submit bugfixes or comments via https://bugs.opensuse.org/
You can contact the BCI team via https://github.com/SUSE/bci/discussions
-->
<!-- OBS-AddTag: opensuse/git:%%git_version%%-%RELEASE% opensuse/git:%%git_version%% opensuse/git:2.47-%RELEASE% opensuse/git:2.47 opensuse/git:%%git_major_version%% opensuse/git:latest -->
<!-- OBS-AddTag: opensuse/git:%%git_version%%-%RELEASE% opensuse/git:%%git_version%% opensuse/git:2.47 opensuse/git:%%git_major_version%% opensuse/git:latest -->
<!-- OBS-Imagerepo: obsrepositories:/ -->

<image schemaversion="7.4" name="git-image" xmlns:suse_label_helper="com.suse.label_helper">
Expand All @@ -28,7 +28,7 @@ You can contact the BCI team via https://github.com/SUSE/bci/discussions
<containerconfig
name="opensuse/git"
tag="%%git_version%%-%RELEASE%"
additionaltags="%%git_version%%,2.47-%RELEASE%,2.47,%%git_major_version%%,latest">
additionaltags="%%git_version%%,2.47,%%git_major_version%%,latest">
<labels>
<suse_label_helper:add_prefix prefix="org.opensuse.application.git">
<label name="org.opencontainers.image.authors" value="openSUSE (https://www.opensuse.org/)"/>
Expand Down
1 change: 0 additions & 1 deletion golang-oldstable-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#!BuildTag: opensuse/bci/golang:oldstable
#!BuildTag: opensuse/bci/golang:%%golang_version%%-2.%RELEASE%
#!BuildTag: opensuse/bci/golang:%%golang_version%%
#!BuildTag: opensuse/bci/golang:1.22-2.%RELEASE%
#!BuildTag: opensuse/bci/golang:1.22

FROM opensuse/tumbleweed:latest
Expand Down
5 changes: 5 additions & 0 deletions golang-oldstable-image/golang-oldstable-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion golang-stable-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#!BuildTag: opensuse/bci/golang:stable
#!BuildTag: opensuse/bci/golang:%%golang_version%%-1.%RELEASE%
#!BuildTag: opensuse/bci/golang:%%golang_version%%
#!BuildTag: opensuse/bci/golang:1.23-1.%RELEASE%
#!BuildTag: opensuse/bci/golang:1.23
#!BuildTag: opensuse/bci/golang:latest

Expand Down
5 changes: 5 additions & 0 deletions golang-stable-image/golang-stable-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion kiwi-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#!BuildTag: opensuse/bci/kiwi:10.1.16-%RELEASE%
#!BuildTag: opensuse/bci/kiwi:10.1.16
#!BuildTag: opensuse/bci/kiwi:10.1-%RELEASE%
#!BuildTag: opensuse/bci/kiwi:10.1
#!BuildTag: opensuse/bci/kiwi:10
#!BuildTag: opensuse/bci/kiwi:latest
Expand Down
5 changes: 5 additions & 0 deletions kiwi-image/kiwi-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Thu Oct 24 08:20:13 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion mariadb-client-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#!BuildTag: opensuse/mariadb-client:%%mariadb_version%%-%RELEASE%
#!BuildTag: opensuse/mariadb-client:%%mariadb_version%%
#!BuildTag: opensuse/mariadb-client:11.5-%RELEASE%
#!BuildTag: opensuse/mariadb-client:11.5
#!BuildTag: opensuse/mariadb-client:latest

Expand Down
5 changes: 5 additions & 0 deletions mariadb-client-image/mariadb-client-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion mariadb-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

#!BuildTag: opensuse/mariadb:%%mariadb_version%%-%RELEASE%
#!BuildTag: opensuse/mariadb:%%mariadb_version%%
#!BuildTag: opensuse/mariadb:11.5-%RELEASE%
#!BuildTag: opensuse/mariadb:11.5
#!BuildTag: opensuse/mariadb:latest

Expand Down
5 changes: 5 additions & 0 deletions mariadb-image/mariadb-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
2 changes: 0 additions & 2 deletions nodejs-20-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@

#!BuildTag: opensuse/bci/nodejs:%%nodejs_version%%-%RELEASE%
#!BuildTag: opensuse/bci/nodejs:%%nodejs_version%%
#!BuildTag: opensuse/bci/nodejs:20-%RELEASE%
#!BuildTag: opensuse/bci/nodejs:20
#!BuildTag: opensuse/bci/nodejs:latest
#!BuildTag: opensuse/bci/node:%%nodejs_version%%-%RELEASE%
#!BuildTag: opensuse/bci/node:%%nodejs_version%%
#!BuildTag: opensuse/bci/node:20-%RELEASE%
#!BuildTag: opensuse/bci/node:20
#!BuildTag: opensuse/bci/node:latest

Expand Down
5 changes: 5 additions & 0 deletions nodejs-20-image/nodejs-20-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
2 changes: 0 additions & 2 deletions nodejs-22-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,9 @@

#!BuildTag: opensuse/bci/nodejs:%%nodejs_version%%-%RELEASE%
#!BuildTag: opensuse/bci/nodejs:%%nodejs_version%%
#!BuildTag: opensuse/bci/nodejs:22-%RELEASE%
#!BuildTag: opensuse/bci/nodejs:22
#!BuildTag: opensuse/bci/node:%%nodejs_version%%-%RELEASE%
#!BuildTag: opensuse/bci/node:%%nodejs_version%%
#!BuildTag: opensuse/bci/node:22-%RELEASE%
#!BuildTag: opensuse/bci/node:22

FROM opensuse/tumbleweed:latest
Expand Down
5 changes: 5 additions & 0 deletions nodejs-22-image/nodejs-22-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion openjdk-11-devel-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#!ExclusiveArch: aarch64 x86_64 ppc64le s390x
#!BuildTag: opensuse/bci/openjdk-devel:%%java_version%%-%RELEASE%
#!BuildTag: opensuse/bci/openjdk-devel:%%java_version%%
#!BuildTag: opensuse/bci/openjdk-devel:11-%RELEASE%
#!BuildTag: opensuse/bci/openjdk-devel:11

FROM opensuse/bci/openjdk:11
Expand Down
5 changes: 5 additions & 0 deletions openjdk-11-devel-image/openjdk-11-devel-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion openjdk-11-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#!ExclusiveArch: aarch64 x86_64 ppc64le s390x
#!BuildTag: opensuse/bci/openjdk:%%java_version%%-%RELEASE%
#!BuildTag: opensuse/bci/openjdk:%%java_version%%
#!BuildTag: opensuse/bci/openjdk:11-%RELEASE%
#!BuildTag: opensuse/bci/openjdk:11

FROM opensuse/tumbleweed:latest
Expand Down
5 changes: 5 additions & 0 deletions openjdk-11-image/openjdk-11-image.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Tue Oct 29 15:23:20 UTC 2024 - SUSE Update Bot <[email protected]>

- drop tag_version-%RELEASE%

-------------------------------------------------------------------
Mon Oct 14 11:26:26 UTC 2024 - SUSE Update Bot <[email protected]>

Expand Down
1 change: 0 additions & 1 deletion openjdk-17-devel-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#!ExclusiveArch: aarch64 x86_64 ppc64le s390x
#!BuildTag: opensuse/bci/openjdk-devel:%%java_version%%-%RELEASE%
#!BuildTag: opensuse/bci/openjdk-devel:%%java_version%%
#!BuildTag: opensuse/bci/openjdk-devel:17-%RELEASE%
#!BuildTag: opensuse/bci/openjdk-devel:17

FROM opensuse/bci/openjdk:17
Expand Down
Loading

0 comments on commit e6c126e

Please sign in to comment.