Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dbaas-operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.26 AS builder
FROM --platform=$BUILDPLATFORM golang:1.26@sha256:2d6c80227255c3112a4d08e67ba98e58efd3846daf15d9d7d4c389565d881b1a AS builder
ARG TARGETOS
ARG TARGETARCH
# Allow Go toolchain auto-download when the image patch (e.g. 1.26.1) is
Expand All @@ -21,7 +21,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} \
go build -a -o dbaas-operator ./cmd/

FROM ghcr.io/netcracker/qubership-core-base:2.2.13
FROM ghcr.io/netcracker/qubership-core-base:2.2.13@sha256:39304438e598101578f91d84bc58699fd1a3f717a46b786cb43523735826e7b4
WORKDIR /app
COPY --chown=10001:0 --chmod=555 --from=builder /app/dbaas-operator /app/dbaas-operator
USER 10001:10001
Expand Down
4 changes: 2 additions & 2 deletions dbaas-operator/dev/aggregator-mock/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.26 AS builder
FROM golang:1.26@sha256:2d6c80227255c3112a4d08e67ba98e58efd3846daf15d9d7d4c389565d881b1a AS builder
ARG TARGETOS
ARG TARGETARCH

Expand All @@ -10,7 +10,7 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} \
go build -a -o dbaas-aggregator ./dev/aggregator-mock/main.go

FROM ghcr.io/netcracker/qubership-core-base:latest
FROM ghcr.io/netcracker/qubership-core-base:latest@sha256:39304438e598101578f91d84bc58699fd1a3f717a46b786cb43523735826e7b4
WORKDIR /app
COPY --chown=10001:0 --chmod=555 --from=builder /app/dbaas-aggregator /app/dbaas-aggregator
USER 10001:10001
Expand Down
2 changes: 1 addition & 1 deletion dbaas/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/netcracker/qubership-java-base-prof:25-alpine-2.2.13
FROM ghcr.io/netcracker/qubership-java-base-prof:25-alpine-2.2.13@sha256:3d7fe1f0fc54679eba5b7097b421c538c395b261d9305be38fd5f159d16eef8b
LABEL maintainer="qubership"

ARG BASE_PATH=.
Expand Down
2 changes: 1 addition & 1 deletion validation-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/netcracker/qubership-core-base:2.2.13
FROM ghcr.io/netcracker/qubership-core-base:2.2.13@sha256:39304438e598101578f91d84bc58699fd1a3f717a46b786cb43523735826e7b4
LABEL maintainer="qubership"

USER root
Expand Down
Loading