Skip to content

Commit 98ac64a

Browse files
fix(container): update container image gcr.io/distroless/static to 01e550f (#81)
* fix(container): update container image gcr.io/distroless/static to 01e550f --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Magnus Ullberg <magnus@ullberg.us>
1 parent 845163b commit 98ac64a

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/renovate.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
':maintainLockFilesWeekly',
88
':pinDigestsDisabled',
99
],
10-
pinDigests: true,
10+
pinDigests: false,
1111
commitMessageTopic: '{{depName}}',
1212
commitMessageExtra: 'to {{newVersion}}',
1313
commitMessageSuffix: '',

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ 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@sha256:cba10d7abd3e203428e86f5b2d7fd5eb7d8987c387864ae4996cf97191b33764
8+
FROM gcr.io/distroless/static:nonroot
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@sha256:4f696fbf39f383c1e486030ba6b289a5d9af541642fc78ab197e584a113b9c03 AS builder
2+
FROM node:24-alpine 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@sha256:7559eaa667fca92b41dd4d9481a1ac070f112c767b1ad24e499bc05cbadb79ee
11+
FROM registry.access.redhat.com/ubi9/nginx-120:latest
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@sha256:102abedc1eb4ece4187eab36107cb3176e672ff6bf17d64396cd903ce13affa0
2+
FROM quay.io/operator-framework/helm-operator:v1.42.0
33

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

0 commit comments

Comments
 (0)