Skip to content
Draft
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
3 changes: 2 additions & 1 deletion full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM cimg/openjdk:17.0-node as base_image

LABEL maintainer="Jeremiah Zucker <zucker.jeremiah@gmail.com>"

ENV BAZELISK_VERSION 1.20.0
ENV BAZELISK_VERSION 1.27.0
RUN wget -q https://github.com/bazelbuild/bazelisk/releases/download/v${BAZELISK_VERSION}/bazelisk-linux-amd64 -O bazelisk && \
chmod +x bazelisk && \
sudo mkdir /opt/bazelisk-v${BAZELISK_VERSION} && \
Expand Down Expand Up @@ -52,3 +52,4 @@ RUN git clone https://github.com/rbenv/ruby-build.git "$(rbenv root)"/plugins/ru
RUN echo 'eval "$(rbenv init -)"' > ~/.bashrc
RUN rbenv install $RUBY_VERSION
RUN rbenv global $RUBY_VERSION
RUN USE_BAZEL_VERSION=8.4.2 bazel version
5 changes: 3 additions & 2 deletions slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ FROM cimg/node:18.20 as base_image

LABEL maintainer="Ketan Reddy <ketan@ketanreddy.com>"

ENV BAZELISK_VERSION 1.20.0
ENV BAZELISK_VERSION 1.27.0

SHELL ["/bin/bash", "-l", "-c"]

RUN wget -q https://github.com/bazelbuild/bazelisk/releases/download/v${BAZELISK_VERSION}/bazelisk-linux-amd64 -O bazelisk && \
chmod +x bazelisk && \
sudo mkdir /opt/bazelisk-v${BAZELISK_VERSION} && \
sudo mv bazelisk /opt/bazelisk-v${BAZELISK_VERSION} && \
sudo ln -s /opt/bazelisk-v${BAZELISK_VERSION}/bazelisk /usr/local/bin/bazel
sudo ln -s /opt/bazelisk-v${BAZELISK_VERSION}/bazelisk /usr/local/bin/bazel && \
USE_BAZEL_VERSION=8.4.2 bazel version
Loading