Skip to content

Commit

Permalink
docker: update LLVM debian repo for Ubuntu Orcular migration
Browse files Browse the repository at this point in the history
When migrating from Ubuntu Matis to Orcular in afea41b, the LLVM debian
package repository configuration wasn't updated accordingly. This caused
Docker builds to fail.

This commit updates the repository configuration to match the new Ubuntu
Orcular base image.

Fixes scylladb#2656

Signed-off-by: Kefu Chai <[email protected]>
  • Loading branch information
tchaikov committed Feb 23, 2025
1 parent 9ca4fee commit 295704e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ RUN --mount=type=bind,source=./install-dependencies.sh,target=/install-dependenc
apt-get update && apt-get install -y \
curl \
gnupg \
&& echo "deb http://apt.llvm.org/mantic/ llvm-toolchain-oracular-18 main" \
&& echo "deb http://apt.llvm.org/oracular/ llvm-toolchain-oracular-18 main" \
>> /etc/apt/sources.list.d/llvm.list \
&& echo "deb http://apt.llvm.org/mantic/ llvm-toolchain-oracular-19 main" \
&& echo "deb http://apt.llvm.org/oracular/ llvm-toolchain-oracular-19 main" \
>> /etc/apt/sources.list.d/llvm.list \
&& curl -sSL https://apt.llvm.org/llvm-snapshot.gpg.key -o /etc/apt/trusted.gpg.d/apt.llvm.org.asc \
&& apt-get update && apt-get install -y \
Expand Down

0 comments on commit 295704e

Please sign in to comment.