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
7 changes: 5 additions & 2 deletions infrastructure/googleapis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM marketplace.gcr.io/google/debian12:latest

ARG BAZELISK_VERSION=1.26.0
ARG BAZELISK_VERSION=1.28.1
ARG BAZEL_VERSION=7.7.1

RUN apt-get update && \
Expand Down Expand Up @@ -30,7 +30,10 @@ RUN mkdir -p /tools
# Add bazelisk and bazel CLIs
ADD https://github.com/bazelbuild/bazelisk/releases/download/v${BAZELISK_VERSION}/bazelisk-linux-amd64 /tools/bazelisk
ADD https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-linux-x86_64 /tools/bazel
RUN chmod +x /tools/bazelisk /tools/bazel
# Make the tools executable. These operations are performed in separate
# layers to make it easier to determine where vulnerabilities come from.
RUN chmod +x /tools/bazelisk
RUN chmod +x /tools/bazel

WORKDIR /

Expand Down