Skip to content

Commit a193886

Browse files
author
SUSE Update Bot
committed
Test build for #3141
1 parent b3a354e commit a193886

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

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.89
22+
#!BuildTag: bci/rust:1.90
2323
#!BuildName: bci-rust-oldstable
24-
#!BuildVersion: 15.7.1.89.2
24+
#!BuildVersion: 15.7.1.90.2
2525
FROM registry.suse.com/bci/bci-base:15.7
2626

2727
RUN set -euo pipefail; \
28-
zypper -n install --no-recommends rust1.89 cargo1.89 lifecycle-data-sle-module-development-tools
28+
zypper -n install --no-recommends rust1.90 cargo1.90 lifecycle-data-sle-module-development-tools
2929

3030
# cleanup logs and temporary files
3131
RUN set -euo pipefail; zypper -n clean -a; \
@@ -42,8 +42,8 @@ RUN set -euo pipefail; sed -i 's/^\([^:]*:[^:]*:\)[^:]*\(:.*\)$/\1\2/' /etc/shad
4242
# Define labels according to https://en.opensuse.org/Building_derived_containers
4343
# labelprefix=com.suse.bci.rust
4444
LABEL org.opencontainers.image.authors="https://github.com/SUSE/bci/discussions"
45-
LABEL org.opencontainers.image.title="SLE BCI Rust 1.89"
46-
LABEL org.opencontainers.image.description="Rust 1.89 container based on the SUSE Linux Enterprise Base Container Image."
45+
LABEL org.opencontainers.image.title="SLE BCI Rust 1.90"
46+
LABEL org.opencontainers.image.description="Rust 1.90 container based on the SUSE Linux Enterprise Base Container Image."
4747
LABEL org.opencontainers.image.version="%%RUST_VERSION%%"
4848
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
4949
LABEL org.opencontainers.image.created="%BUILDTIME%"
@@ -53,7 +53,7 @@ LABEL org.opencontainers.image.ref.name="%%RUST_VERSION%%-2.%RELEASE%"
5353
LABEL org.opensuse.reference="registry.suse.com/bci/rust:%%RUST_VERSION%%-2.%RELEASE%"
5454
LABEL org.openbuildservice.disturl="%DISTURL%"
5555
LABEL com.suse.supportlevel="l3"
56-
LABEL com.suse.supportlevel.until="2025-11-20"
56+
LABEL com.suse.supportlevel.until="2026-01-01"
5757
LABEL com.suse.eula="sle-bci"
5858
LABEL com.suse.lifecycle-url="https://www.suse.com/lifecycle#suse-linux-enterprise-server-15"
5959
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.89 Container Image
1+
# Rust 1.90 Container Image
22

33
![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)[![SLSA](https://img.shields.io/badge/SLSA_(v1.0)-Build_L3-Green)](https://documentation.suse.com/sbp/security/html/SBP-SLSA4/)
44
[![Provenance: Available](https://img.shields.io/badge/Provenance-Available-Green)](https://documentation.suse.com/container/all/html/Container-guide/index.html#container-verify)
@@ -12,8 +12,8 @@
1212
To compile and deploy an application, copy the sources, fetch dependencies, and build the binary:
1313

1414
```Dockerfile
15-
# Build the application using the Rust 1.89 container image
16-
FROM registry.suse.com/bci/rust:1.89 as build
15+
# Build the application using the Rust 1.90 container image
16+
FROM registry.suse.com/bci/rust:1.90 as build
1717

1818
WORKDIR /app
1919

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

4343
```ShellSession
44-
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.89 cargo build --release
44+
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.90 cargo build --release
4545
```
4646

4747
**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.89</param>
7+
<param name="package">rust1.90</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.89</param>
12+
<param name="package">cargo1.90</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.89
2-
requires:rust1.89
1+
requires:cargo1.90
2+
requires:rust1.90

rust-stable-image/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
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.91
2323
#!BuildTag: bci/rust:latest
2424
#!BuildName: bci-rust-stable
25-
#!BuildVersion: 15.7.1.90.1
25+
#!BuildVersion: 15.7.1.91.1
2626
FROM registry.suse.com/bci/bci-base:15.7
2727

2828
RUN set -euo pipefail; \
29-
zypper -n install --no-recommends rust1.90 cargo1.90 lifecycle-data-sle-module-development-tools
29+
zypper -n install --no-recommends rust1.91 cargo1.91 lifecycle-data-sle-module-development-tools
3030

3131
# cleanup logs and temporary files
3232
RUN set -euo pipefail; zypper -n clean -a; \
@@ -43,8 +43,8 @@ RUN set -euo pipefail; sed -i 's/^\([^:]*:[^:]*:\)[^:]*\(:.*\)$/\1\2/' /etc/shad
4343
# Define labels according to https://en.opensuse.org/Building_derived_containers
4444
# labelprefix=com.suse.bci.rust
4545
LABEL org.opencontainers.image.authors="https://github.com/SUSE/bci/discussions"
46-
LABEL org.opencontainers.image.title="SLE BCI Rust 1.90"
47-
LABEL org.opencontainers.image.description="Rust 1.90 container based on the SUSE Linux Enterprise Base Container Image."
46+
LABEL org.opencontainers.image.title="SLE BCI Rust 1.91"
47+
LABEL org.opencontainers.image.description="Rust 1.91 container based on the SUSE Linux Enterprise Base Container Image."
4848
LABEL org.opencontainers.image.version="%%RUST_VERSION%%"
4949
LABEL org.opencontainers.image.url="https://www.suse.com/products/base-container-images/"
5050
LABEL org.opencontainers.image.created="%BUILDTIME%"
@@ -54,7 +54,7 @@ LABEL org.opencontainers.image.ref.name="%%RUST_VERSION%%-1.%RELEASE%"
5454
LABEL org.opensuse.reference="registry.suse.com/bci/rust:%%RUST_VERSION%%-1.%RELEASE%"
5555
LABEL org.openbuildservice.disturl="%DISTURL%"
5656
LABEL com.suse.supportlevel="l3"
57-
LABEL com.suse.supportlevel.until="2026-01-01"
57+
LABEL com.suse.supportlevel.until="2026-02-12"
5858
LABEL com.suse.eula="sle-bci"
5959
LABEL com.suse.lifecycle-url="https://www.suse.com/lifecycle#suse-linux-enterprise-server-15"
6060
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.91 Container Image
22

33
![Redistributable](https://img.shields.io/badge/Redistributable-Yes-green)[![SLSA](https://img.shields.io/badge/SLSA_(v1.0)-Build_L3-Green)](https://documentation.suse.com/sbp/security/html/SBP-SLSA4/)
44
[![Provenance: Available](https://img.shields.io/badge/Provenance-Available-Green)](https://documentation.suse.com/container/all/html/Container-guide/index.html#container-verify)
@@ -12,8 +12,8 @@
1212
To compile and deploy an application, copy the sources, fetch dependencies, and build the binary:
1313

1414
```Dockerfile
15-
# Build the application using the Rust 1.90 container image
16-
FROM registry.suse.com/bci/rust:1.90 as build
15+
# Build the application using the Rust 1.91 container image
16+
FROM registry.suse.com/bci/rust:1.91 as build
1717

1818
WORKDIR /app
1919

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

4343
```ShellSession
44-
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.90 cargo build --release
44+
$ podman run --rm -v "$PWD":/app:Z -w /app registry.suse.com/bci/rust:1.91 cargo build --release
4545
```
4646

4747
**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.91</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.91</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.91
2+
requires:rust1.91

0 commit comments

Comments
 (0)