Skip to content

Commit 4edfeb0

Browse files
authored
Merge pull request #3022 from SUSE/for-deploy-16.0
🤖: Update build recipes for 16.0
2 parents 9b0dd23 + 5f457f8 commit 4edfeb0

10 files changed

Lines changed: 38 additions & 28 deletions

File tree

rust-oldstable-image/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
#!BuildTag: bci/rust:oldstable
2020
#!BuildTag: bci/rust:%%RUST_VERSION%%-2.%RELEASE%
2121
#!BuildTag: bci/rust:%%RUST_VERSION%%
22-
#!BuildTag: bci/rust:1.88
22+
#!BuildTag: bci/rust:1.87
2323
#!BuildName: bci-rust-oldstable
24-
#!BuildVersion: 16.0.1.88.2
24+
#!BuildVersion: 16.0.1.87.2
2525
FROM registry.suse.com/bci/bci-base:16.0
2626

2727
RUN set -euo pipefail; \
28-
zypper -n install --no-recommends rust1.88 cargo1.88
28+
zypper -n install --no-recommends rust1.87 cargo1.87
2929
RUN set -euo pipefail; zypper -n clean -a; \
3030
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}; \
3131
rm -rf {/target,}/run/*; \
@@ -38,8 +38,8 @@ RUN set -euo pipefail; zypper -n clean -a; \
3838
# Define labels according to https://en.opensuse.org/Building_derived_containers
3939
# labelprefix=com.suse.bci.rust
4040
LABEL org.opencontainers.image.authors="https://github.com/SUSE/bci/discussions"
41-
LABEL org.opencontainers.image.title="SLE BCI Rust 1.88"
42-
LABEL org.opencontainers.image.description="Rust 1.88 container based on the SLE Base Container Image."
41+
LABEL org.opencontainers.image.title="SLE BCI Rust 1.87"
42+
LABEL org.opencontainers.image.description="Rust 1.87 container based on the SLE Base Container Image."
4343
LABEL org.opencontainers.image.version="%%RUST_VERSION%%"
4444
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
4545
LABEL org.opencontainers.image.created="%BUILDTIME%"
@@ -49,7 +49,7 @@ LABEL org.opencontainers.image.ref.name="%%RUST_VERSION%%-2.%RELEASE%"
4949
LABEL org.opensuse.reference="registry.suse.com/bci/rust:%%RUST_VERSION%%-2.%RELEASE%"
5050
LABEL org.openbuildservice.disturl="%DISTURL%"
5151
LABEL com.suse.supportlevel="l3"
52-
LABEL com.suse.supportlevel.until="2025-10-09"
52+
LABEL com.suse.supportlevel.until="2025-08-28"
5353
LABEL com.suse.eula="sle-bci"
5454
LABEL com.suse.lifecycle-url="https://www.suse.com/lifecycle"
5555
LABEL com.suse.release-stage="released"

rust-oldstable-image/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Rust 1.88 Container Image
1+
# Rust 1.87 Container Image
22

33
![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)
44
[![SLSA](https://img.shields.io/badge/SLSA_(v0.1)-Level_4-Green)](https://documentation.suse.com/sbp/server-linux/html/SBP-SLSA4/)
@@ -13,8 +13,8 @@
1313
To compile and deploy an application, copy the sources, fetch dependencies, and build the binary:
1414

1515
```Dockerfile
16-
# Build the application using the Rust 1.88 container image
17-
FROM registry.suse.com/bci/rust:1.88 as build
16+
# Build the application using the Rust 1.87 container image
17+
FROM registry.suse.com/bci/rust:1.87 as build
1818

1919
WORKDIR /app
2020

@@ -42,7 +42,7 @@ There are situations, where you don't want to run an application inside a contai
4242
To compile the application, without running it inside a container instance, use the following command:
4343

4444
```ShellSession
45-
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.88 cargo build --release
45+
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.87 cargo build --release
4646
```
4747

4848
**Note:** The Rust image is intended to be used as a build environment. For runtime, use smaller images such as `bci-base`, `bci-micro`, or `bci-minimal`.

rust-oldstable-image/_service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<service mode="buildtime" name="replace_using_package_version">
55
<param name="file">Dockerfile</param>
66
<param name="regex">%%RUST_VERSION%%</param>
7-
<param name="package">rust1.88</param>
7+
<param name="package">rust1.87</param>
88
</service>
99
<service mode="buildtime" name="replace_using_package_version">
1010
<param name="file">Dockerfile</param>
1111
<param name="regex">%%CARGO_VERSION%%</param>
12-
<param name="package">cargo1.88</param>
12+
<param name="package">cargo1.87</param>
1313
</service>
1414
</services>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
requires:cargo1.88
2-
requires:rust1.88
1+
requires:cargo1.87
2+
requires:rust1.87

rust-oldstable-image/rust-oldstable-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Wed Oct 8 09:59:24 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- revert rust version update temporily again
5+
16
-------------------------------------------------------------------
27
Mon Oct 6 20:44:19 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
38

rust-stable-image/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
#!BuildTag: bci/rust:stable
2020
#!BuildTag: bci/rust:%%RUST_VERSION%%-1.%RELEASE%
2121
#!BuildTag: bci/rust:%%RUST_VERSION%%
22-
#!BuildTag: bci/rust:1.90
22+
#!BuildTag: bci/rust:1.88
2323
#!BuildName: bci-rust-stable
24-
#!BuildVersion: 16.0.1.90.1
24+
#!BuildVersion: 16.0.1.88.1
2525
FROM registry.suse.com/bci/bci-base:16.0
2626

2727
RUN set -euo pipefail; \
28-
zypper -n install --no-recommends rust1.90 cargo1.90
28+
zypper -n install --no-recommends rust1.88 cargo1.88
2929
RUN set -euo pipefail; zypper -n clean -a; \
3030
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}; \
3131
rm -rf {/target,}/run/*; \
@@ -38,8 +38,8 @@ RUN set -euo pipefail; zypper -n clean -a; \
3838
# Define labels according to https://en.opensuse.org/Building_derived_containers
3939
# labelprefix=com.suse.bci.rust
4040
LABEL org.opencontainers.image.authors="https://github.com/SUSE/bci/discussions"
41-
LABEL org.opencontainers.image.title="SLE BCI Rust 1.90"
42-
LABEL org.opencontainers.image.description="Rust 1.90 container based on the SLE Base Container Image."
41+
LABEL org.opencontainers.image.title="SLE BCI Rust 1.88"
42+
LABEL org.opencontainers.image.description="Rust 1.88 container based on the SLE Base Container Image."
4343
LABEL org.opencontainers.image.version="%%RUST_VERSION%%"
4444
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
4545
LABEL org.opencontainers.image.created="%BUILDTIME%"
@@ -49,7 +49,7 @@ LABEL org.opencontainers.image.ref.name="%%RUST_VERSION%%-1.%RELEASE%"
4949
LABEL org.opensuse.reference="registry.suse.com/bci/rust:%%RUST_VERSION%%-1.%RELEASE%"
5050
LABEL org.openbuildservice.disturl="%DISTURL%"
5151
LABEL com.suse.supportlevel="l3"
52-
LABEL com.suse.supportlevel.until="2026-01-01"
52+
LABEL com.suse.supportlevel.until="2025-10-09"
5353
LABEL com.suse.eula="sle-bci"
5454
LABEL com.suse.lifecycle-url="https://www.suse.com/lifecycle"
5555
LABEL com.suse.release-stage="released"

rust-stable-image/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Rust 1.90 Container Image
1+
# Rust 1.88 Container Image
22

33
![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)
44
[![SLSA](https://img.shields.io/badge/SLSA_(v0.1)-Level_4-Green)](https://documentation.suse.com/sbp/server-linux/html/SBP-SLSA4/)
@@ -13,8 +13,8 @@
1313
To compile and deploy an application, copy the sources, fetch dependencies, and build the binary:
1414

1515
```Dockerfile
16-
# Build the application using the Rust 1.90 container image
17-
FROM registry.suse.com/bci/rust:1.90 as build
16+
# Build the application using the Rust 1.88 container image
17+
FROM registry.suse.com/bci/rust:1.88 as build
1818

1919
WORKDIR /app
2020

@@ -42,7 +42,7 @@ There are situations, where you don't want to run an application inside a contai
4242
To compile the application, without running it inside a container instance, use the following command:
4343

4444
```ShellSession
45-
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.90 cargo build --release
45+
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.88 cargo build --release
4646
```
4747

4848
**Note:** The Rust image is intended to be used as a build environment. For runtime, use smaller images such as `bci-base`, `bci-micro`, or `bci-minimal`.

rust-stable-image/_service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<service mode="buildtime" name="replace_using_package_version">
55
<param name="file">Dockerfile</param>
66
<param name="regex">%%RUST_VERSION%%</param>
7-
<param name="package">rust1.90</param>
7+
<param name="package">rust1.88</param>
88
</service>
99
<service mode="buildtime" name="replace_using_package_version">
1010
<param name="file">Dockerfile</param>
1111
<param name="regex">%%CARGO_VERSION%%</param>
12-
<param name="package">cargo1.90</param>
12+
<param name="package">cargo1.88</param>
1313
</service>
1414
</services>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
requires:cargo1.90
2-
requires:rust1.90
1+
requires:cargo1.88
2+
requires:rust1.88

rust-stable-image/rust-stable-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Wed Oct 8 09:59:24 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- revert rust version update temporily again
5+
16
-------------------------------------------------------------------
27
Mon Oct 6 20:44:19 UTC 2025 - SUSE Update Bot <bci-internal@suse.de>
38

0 commit comments

Comments
 (0)