Skip to content
Open
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
5 changes: 4 additions & 1 deletion tools/docker/bazel.dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ARG BASE_IMAGE_OS_NAME=ubuntu
ARG BASE_IMAGE_OS_VERSION=noble
FROM ${BASE_IMAGE_OS_NAME}:${BASE_IMAGE_OS_VERSION}
# Pinned to a specific digest so Snyk's static Dockerfile scanner can verify
# the base image is patched. Update this digest when upgrading the base image.
ARG BASE_IMAGE_DIGEST=sha256:4fbb8e6a8395de5a7550b33509421a2bafbc0aab6c06ba2cef9ebffbc7092d90
FROM ${BASE_IMAGE_OS_NAME}:${BASE_IMAGE_OS_VERSION}@${BASE_IMAGE_DIGEST}
ARG TARGETARCH

COPY --chown=0:0 bazel/install-deps.sh /
Expand Down