Skip to content

Commit

Permalink
use GCC 13 musl-toolchain
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed May 9, 2024
1 parent 818c850 commit 1b91558
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ RUN wget https://github.com/elm-lang/elm-platform/releases/download/0.18.0-exp/e
tar xf elm-platform-linux-64bit.tar.gz -C /opt

# INSTALL CROSS-PLATFORM TOOLCHAINS
RUN wget https://github.com/motis-project/musl-toolchains/releases/download/v0.0.12/aarch64-unknown-linux-musl.tar.xz && \
RUN wget https://github.com/motis-project/musl-toolchains/releases/download/v0.0.13/aarch64-unknown-linux-musl.tar.xz && \
tar xf aarch64-unknown-linux-musl.tar.xz -C /opt && \
rm -rf aarch64-unknown-linux-musl.tar.xz && \
wget https://github.com/motis-project/musl-toolchains/releases/download/v0.0.12/arm-unknown-linux-musleabihf.tar.xz && \
wget https://github.com/motis-project/musl-toolchains/releases/download/v0.0.13/arm-unknown-linux-musleabihf.tar.xz && \
tar xf arm-unknown-linux-musleabihf.tar.xz -C /opt && \
rm -rf arm-unknown-linux-musleabihf.tar.xz && \
wget https://github.com/motis-project/musl-toolchains/releases/download/v0.0.12/x86_64-multilib-linux-musl.tar.xz && \
wget https://github.com/motis-project/musl-toolchains/releases/download/v0.0.13/x86_64-multilib-linux-musl.tar.xz && \
tar xf x86_64-multilib-linux-musl.tar.xz -C /opt && \
rm -rf x86_64-multilib-linux-musl.tar.xz

Expand Down

0 comments on commit 1b91558

Please sign in to comment.