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
4 changes: 3 additions & 1 deletion contrib/docker/ubuntu/noble/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apt update \
libev-dev \
libevent-dev \
zlib1g-dev \
cargo \
rustup \
wget \
git \
libtool \
Expand Down Expand Up @@ -61,6 +61,8 @@ RUN apt update \
libssl-dev \
&& apt clean --yes

RUN rustup default stable

RUN mkdir -p ${BASE} && chmod a+rX ${BASE}

RUN if [ `uname -m` = "arm64" -o `uname -m` = "aarch64" ]; then echo "arm64" > /arch; else echo "amd64" > /arch; fi \
Expand Down