Skip to content

Commit

Permalink
fixes #66
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 563087467
  • Loading branch information
j2kun authored and copybara-github committed Sep 6, 2023
1 parent c3ce049 commit 4fda9a5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docker/debian-bullseye.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN apt-get update && apt-get install -y \
bison \
wget

# Install bazel
RUN wget -O bazel "https://github.com/bazelbuild/bazel/releases/download/5.3.2/bazel-5.3.2-linux-x86_64" \
&& test "973e213b1e9207ccdd3ea4730c0f92cbef769ec112ac2b84980583220d8db845 bazel" = "$(sha256sum bazel)" \
# Install bazelisk as bazel
RUN wget -O bazel "https://github.com/bazelbuild/bazelisk/releases/download/v1.12.0/bazelisk-linux-amd64" \
&& test "6b0bcb2ea15bca16fffabe6fda75803440375354c085480fe361d2cbf32501db bazel" = "$(sha256sum bazel)" \
&& chmod +x bazel \
&& mv bazel /bin/bazel

Expand Down
6 changes: 3 additions & 3 deletions docker/ubuntu-jammy.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ RUN apt-get update && apt-get install -y \
bison \
wget

# Install bazel
RUN wget -O bazel "https://github.com/bazelbuild/bazel/releases/download/5.3.2/bazel-5.3.2-linux-x86_64" \
&& test "973e213b1e9207ccdd3ea4730c0f92cbef769ec112ac2b84980583220d8db845 bazel" = "$(sha256sum bazel)" \
# Install bazelisk as bazel
RUN wget -O bazel "https://github.com/bazelbuild/bazelisk/releases/download/v1.12.0/bazelisk-linux-amd64" \
&& test "6b0bcb2ea15bca16fffabe6fda75803440375354c085480fe361d2cbf32501db bazel" = "$(sha256sum bazel)" \
&& chmod +x bazel \
&& mv bazel /bin/bazel

Expand Down

0 comments on commit 4fda9a5

Please sign in to comment.