Skip to content
Merged
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
5 changes: 5 additions & 0 deletions dockerfiles/lint-ci.DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ RUN curl -sL https://deb.nodesource.com/setup_18.x -o nodesource_setup.sh \
&& apt-get install -y nodejs \
&& apt-get clean

# install uv
RUN curl -sL https://astral.sh/uv/install.sh -o uv_install.sh \
&& sh uv_install.sh \
&& rm -f uv_install.sh

RUN npm install markdownlint-cli2 --global \
&& rm -rf node_modules

Expand Down
5 changes: 5 additions & 0 deletions dockerfiles/ubuntu-base-ci.DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] ; then CONDA_ARCH=aarch64 ; else CO
# Add conda to path
ENV PATH="/root/miniconda3/bin:${PATH}"

# install uv
RUN curl -sL https://astral.sh/uv/install.sh -o uv_install.sh \
&& sh uv_install.sh \
&& rm -f uv_install.sh

# install bazel
RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] ; then BAZEL_ARCH=arm64 ; else BAZEL_ARCH=amd64 ; fi \
&& wget https://github.com/bazelbuild/bazelisk/releases/download/v1.25.0/bazelisk-linux-$BAZEL_ARCH \
Expand Down