Skip to content
Merged
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
13 changes: 12 additions & 1 deletion .github/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,18 @@ FROM --platform=$BUILDPLATFORM ubuntu:24.04
ENV TZ=US \
DEBIAN_FRONTEND=noninteractive

RUN apt-get -qq update && apt-get install -y zstd git pkg-config curl make g++ libssl-dev libzmq3-dev qt6-base-dev libboost-dev clang-format black
# apt repo for clang
RUN apt-get -qq update && apt-get install -y lsb-release software-properties-common gnupg curl
RUN curl https://apt.llvm.org/llvm-snapshot.gpg.key -sSf | gpg --dearmor -o /usr/share/keyrings/llvm-archive-keyring.gpg
RUN echo "deb [signed-by=/usr/share/keyrings/llvm-archive-keyring.gpg] http://apt.llvm.org/$(lsb_release -sc)/ llvm-toolchain-$(lsb_release -sc) main" | tee /etc/apt/sources.list.d/llvm.list
RUN apt-get -qq update

# install clang-format
RUN apt-get install -y clang-format-20
RUN update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-20 100

# install remaining dependencies
RUN apt-get install -y zstd git pkg-config make g++ libssl-dev libzmq3-dev qt6-base-dev libboost-dev black

# install toolchain
RUN curl https://sh.rustup.rs -sSf | \
Expand Down
Loading