Skip to content

Commit 33db4a3

Browse files
chore(deps): pin dependencies
1 parent a8120be commit 33db4a3

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM mcr.microsoft.com/devcontainers/base:2.1.9-bookworm
1+
FROM mcr.microsoft.com/devcontainers/base:2.1.10-bookworm@sha256:aba0f2e0730af481edf2db5582a80c0ed2591bee78ec177f7fa7a38e8f5e1105
22

33
ENV PYTHONUNBUFFERED=True
44
ENV UV_LINK_MODE=copy
55

66
WORKDIR /opt
77

8-
COPY --from=ghcr.io/astral-sh/uv:0.11.19 /uv /bin/uv
9-
COPY --from=ghcr.io/astral-sh/uv:0.11.19 /uvx /bin/uvx
8+
COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /bin/uv
9+
COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uvx /bin/uvx
1010
COPY ./.py-version ./.python-version
1111

1212
# Install required tools for development

controller/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN --mount=type=cache,target=/opt/app-root/src/go/pkg/mod,sharing=locked,uid=1
3939
-ldflags "-X main.version=${GIT_VERSION} -X main.gitCommit=${GIT_COMMIT} -X main.buildDate=${BUILD_DATE}" \
4040
-o router cmd/router/main.go
4141

42-
FROM registry.access.redhat.com/ubi9/ubi-micro:9.5
42+
FROM registry.access.redhat.com/ubi9/ubi-micro:9.8-1779858820@sha256:b498b3ea26111ab4b81d65139f2ebd2ef9a2abb7a4588b7fdcc54889f95e9caa
4343
WORKDIR /
4444
COPY --from=builder /opt/app-root/src/manager .
4545
COPY --from=builder /opt/app-root/src/router .

controller/Dockerfile.operator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN --mount=type=cache,target=/opt/app-root/src/go/pkg/mod,sharing=locked,uid=10
3939
-ldflags "-X main.version=${GIT_VERSION} -X main.gitCommit=${GIT_COMMIT} -X main.buildDate=${BUILD_DATE}" \
4040
-o manager cmd/main.go
4141

42-
FROM registry.access.redhat.com/ubi9/ubi-micro:9.5
42+
FROM registry.access.redhat.com/ubi9/ubi-micro:9.8-1779858820@sha256:b498b3ea26111ab4b81d65139f2ebd2ef9a2abb7a4588b7fdcc54889f95e9caa
4343
WORKDIR /
4444
COPY --from=builder /opt/app-root/src/deploy/operator/manager .
4545
USER 65532:65532

controller/deploy/microshift-bootc/Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/microshift-io/microshift:4.21.0_gbc8e20c07_4.21.0_okd_scos.ec.14
1+
FROM ghcr.io/microshift-io/microshift:4.21.0_g29f429c21_4.21.0_okd_scos.ec.15@sha256:f8a9d7718a8631d4652505c20f9435556e5132bbf6fc8b17ee96e439ec1816ee
22
# Install dependencies for config-svc
33
RUN dnf install -y epel-release && \
44
dnf install -y python3 iproute python3-flask python3-pip && \

python/.devfile/Containerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/devfile/base-developer-image:ubi9-latest
1+
FROM quay.io/devfile/base-developer-image:ubi9-latest@sha256:c9665e37c2b9367b868954bfc3313b3cd91138e598ac8630903d6a96b0c7c878
22
LABEL maintainer="Jumpstarter.dev"
33

44
LABEL name="devfile/udi9/jumpstarter"
@@ -8,8 +8,8 @@ LABEL summary="devfile jumpstarter developer image"
88
LABEL description="Image with developers tools."
99
LABEL io.k8s.display-name="jumpstarter-developer-universal"
1010

11-
COPY --from=ghcr.io/astral-sh/uv:0.11.19 /uv /bin/uv
12-
COPY --from=ghcr.io/astral-sh/uv:0.11.19 /uvx /bin/uvx
11+
COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /bin/uv
12+
COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uvx /bin/uvx
1313

1414
USER root
1515

python/.devfile/Containerfile.client

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.19 AS uv
1+
FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 AS uv
22

3-
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/ubi:9.5 AS builder
3+
FROM --platform=$BUILDPLATFORM registry.access.redhat.com/ubi9/ubi:9.8-1781496985@sha256:1b99266db480e8aa6dfda6900697a07ec99334095b4f87d1687edfc06c965132 AS builder
44
RUN dnf install -y make git && \
55
dnf clean all && \
66
rm -rf /var/cache/dnf
@@ -9,7 +9,7 @@ ADD . /src
99
RUN make -C /src/python build
1010

1111

12-
FROM quay.io/devfile/base-developer-image:ubi9-latest
12+
FROM quay.io/devfile/base-developer-image:ubi9-latest@sha256:c9665e37c2b9367b868954bfc3313b3cd91138e598ac8630903d6a96b0c7c878
1313
LABEL maintainer="jumpstarter.dev"
1414

1515
LABEL name="devfile/udi9/jumpstarter-client"

python/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.19 AS uv
1+
FROM --platform=$BUILDPLATFORM ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 AS uv
22

3-
FROM --platform=$BUILDPLATFORM fedora:43 AS builder
3+
FROM --platform=$BUILDPLATFORM fedora:43@sha256:762d73ba1c455232b0272c5d445a34f36c4b9f421cbc05ce8102552325b6a222 AS builder
44
RUN dnf install -y make git && \
55
dnf clean all && \
66
rm -rf /var/cache/dnf
77
COPY --from=uv /uv /uvx /bin/
88

9-
FROM fedora:43 AS product
9+
FROM fedora:43@sha256:762d73ba1c455232b0272c5d445a34f36c4b9f421cbc05ce8102552325b6a222 AS product
1010
RUN dnf install -y python3 ustreamer libusb1 android-tools python3-libgpiod curl \
1111
nftables dnsmasq iproute procps-ng tcpdump && \
1212
dnf clean all && \
1313
rm -rf /var/cache/dnf
14-
COPY --from=ghcr.io/astral-sh/uv:0.11.19 /uv /uvx /bin/
14+
COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /uvx /bin/
1515

1616
ARG FLS_VERSION=0.2.0
1717
RUN ARCH=$(uname -m) && \

python/Dockerfile.utils

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fedora:43
1+
FROM fedora:43@sha256:762d73ba1c455232b0272c5d445a34f36c4b9f421cbc05ce8102552325b6a222
22
RUN dnf install -y kubernetes-client easy-rsa trurl && \
33
dnf clean all && \
44
rm -rf /var/cache/dnf

0 commit comments

Comments
 (0)