Skip to content

Commit

Permalink
chore(ci) fix ubuntu 22.04 release docker image
Browse files Browse the repository at this point in the history
In the commit 1a0759b,
the Dockerfile used to build the ubuntu 22.04 release image was
changed to install `clang-15` instead of `clang` -- applying the
intended bump.

It lacked, however, an `update-alternative` call making `clang`
available as a link to `clang-15`.
  • Loading branch information
casimiro authored and thibaultcha committed Sep 19, 2023
1 parent 0ca3893 commit ef42e97
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion assets/release/Dockerfiles/Dockerfile.ubuntu-22.04
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ RUN apt-get update && \
clang-${CLANG_VERSION} \
curl \
binfmt-support \
qemu-user-static
qemu-user-static && \
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${CLANG_VERSION} 100

ENV RUSTUP_HOME=/usr/local/rustup CARGO_HOME=/usr/local/cargo
ENV PATH $CARGO_HOME/bin:$PATH
Expand Down

0 comments on commit ef42e97

Please sign in to comment.