Skip to content

Commit 2ea46be

Browse files
chore(deps): pin dependencies
1 parent fb5343d commit 2ea46be

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.25
1+
FROM golang:1.25@sha256:698183780de28062f4ef46f82a79ec0ae69d2d22f7b160cf69f71ea8d98bf25d
22

33
ENV PYTHONDONTWRITEBYTECODE=1 \
44
PYTHONUNBUFFERED=1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.25 AS builder
1+
FROM golang:1.25@sha256:698183780de28062f4ef46f82a79ec0ae69d2d22f7b160cf69f71ea8d98bf25d AS builder
22
WORKDIR /workspace
33
COPY go.mod go.sum ./
44
RUN go mod download
55
COPY . .
66
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /lease-controller ./cmd/main.go
77

8-
FROM gcr.io/distroless/static:nonroot
8+
FROM gcr.io/distroless/static:nonroot@sha256:e8a4044e0b4ae4257efa45fc026c0bc30ad320d43bd4c1a7d5271bd241e386d0
99
COPY --from=builder /lease-controller /lease-controller
1010
ENTRYPOINT ["/lease-controller"]

object-lease-console-plugin/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM node:24-alpine AS builder
2+
FROM node:24-alpine@sha256:2867d550cf9d8bb50059a0fff528741f11a84d985c732e60e19e8e75c7239c43 AS builder
33
WORKDIR /opt/app
44
COPY package.json tsconfig.json webpack.config.js ./
55
COPY src ./src
@@ -8,7 +8,7 @@ RUN yarn install --frozen-lockfile || yarn install \
88
&& yarn build
99

1010
# Runtime stage: serve plugin assets over HTTPS with service certs
11-
FROM registry.access.redhat.com/ubi9/nginx-120:latest
11+
FROM registry.access.redhat.com/ubi9/nginx-120:latest@sha256:01cebb3515239cecfe3e3443e5cf040f892429e401d241e844698588ee2a3424
1212
# Copy build
1313
COPY --from=builder /opt/app/dist/ /opt/app-root/src/
1414
COPY run.sh /usr/local/bin/run.sh

object-lease-operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM quay.io/operator-framework/helm-operator:v1.42.0
2+
FROM quay.io/operator-framework/helm-operator:v1.42.0@sha256:102abedc1eb4ece4187eab36107cb3176e672ff6bf17d64396cd903ce13affa0
33

44
### Required OpenShift Labels
55
LABEL name="Object Lease Operator" \

0 commit comments

Comments
 (0)