Skip to content

Commit cd85fac

Browse files
author
Yair Podemsky
committed
Update Container images to fedora 43
Updating all Fedroa container images to version 43. Also updating rust version to 1.92 Signed-off-by: Yair Podemsky <ypodemsk@redhat.com>
1 parent 4d27ca9 commit cd85fac

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222
env:
2323
CARGO_TERM_COLOR: always
2424
# Pinned toolchain for linting
25-
ACTIONS_LINTS_TOOLCHAIN: 1.85.0
25+
ACTIONS_LINTS_TOOLCHAIN: 1.92.0
2626

2727
jobs:
2828
linting:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ resolver = "3"
99

1010
[workspace.package]
1111
edition = "2024"
12-
rust-version = "1.85"
12+
rust-version = "1.92"
1313

1414
[workspace.dependencies]
1515
anyhow = "1.0.100"

Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
ARG build_type
77
# Dependency build stage
8-
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
8+
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
99
ARG build_type
1010
WORKDIR /build
1111

@@ -31,6 +31,6 @@ COPY operator/src operator/src
3131
RUN cargo build -p operator $(if [ "$build_type" = release ]; then echo --release; fi)
3232

3333
# Distribution stage
34-
FROM quay.io/fedora/fedora:42
34+
FROM quay.io/fedora/fedora:43
3535
ARG build_type
3636
COPY --from=builder "/build/target/$build_type/operator" /usr/bin

attestation-key-register/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: CC0-1.0
44

55
ARG build_type
6-
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
6+
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
77
ARG build_type
88
WORKDIR /build
99

@@ -26,7 +26,7 @@ RUN sed -i 's/members =.*/members = ["lib", "attestation-key-register"]/' Cargo.
2626
COPY attestation-key-register/src attestation-key-register/src
2727
RUN cargo build -p attestation-key-register $(if [ "$build_type" = release ]; then echo --release; fi)
2828

29-
FROM quay.io/fedora/fedora:42
29+
FROM quay.io/fedora/fedora:43
3030
ARG build_type
3131
COPY --from=builder "/build/target/$build_type/attestation-key-register" /usr/bin
3232
EXPOSE 8001

compute-pcrs/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# SPDX-License-Identifier: CC0-1.0
55

66
ARG build_type
7-
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
7+
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
88
ARG build_type
99
WORKDIR /build
1010

@@ -28,7 +28,7 @@ RUN sed -i 's/members =.*/members = ["compute-pcrs", "lib"]/' Cargo.toml && \
2828
COPY compute-pcrs/src compute-pcrs/src
2929
RUN cargo build -p compute-pcrs $(if [ "$build_type" = release ]; then echo --release; fi)
3030

31-
FROM quay.io/fedora/fedora:42
31+
FROM quay.io/fedora/fedora:43
3232
ARG build_type
3333
COPY --from=builder "/build/target/$build_type/compute-pcrs" /usr/bin
3434
COPY --from=builder /build/reference-values /reference-values

register-server/Containerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: CC0-1.0
44

55
ARG build_type
6-
FROM ghcr.io/trusted-execution-clusters/buildroot AS builder
6+
FROM ghcr.io/trusted-execution-clusters/buildroot:fedora AS builder
77
ARG build_type
88
WORKDIR /build
99

@@ -27,7 +27,7 @@ RUN sed -i 's/members =.*/members = ["lib", "register-server"]/' Cargo.toml && \
2727
COPY register-server/src register-server/src
2828
RUN cargo build -p register-server $(if [ "$build_type" = release ]; then echo --release; fi)
2929

30-
FROM quay.io/fedora/fedora:42
30+
FROM quay.io/fedora/fedora:43
3131
ARG build_type
3232
COPY --from=builder "/build/target/$build_type/register-server" /usr/bin
3333
EXPOSE 3030

0 commit comments

Comments
 (0)