Skip to content
Merged
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: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
#
# SPDX-License-Identifier: Apache-2.0

ARG BASE_IMAGE_GO_DISTROLESS

# Build the image
FROM golang:1.24 as builder

Expand All @@ -34,7 +36,7 @@ COPY . /workspace
# Build with make to apply all build logic defined in Makefile
RUN make build

FROM nvcr.io/nvidia/distroless/go:v3.2.0
FROM ${BASE_IMAGE_GO_DISTROLESS:-nvcr.io/nvidia/distroless/go:v3.2.1}
WORKDIR /
COPY --from=builder /workspace/build/network-operator-init-container .

Expand Down
Loading