Add MUSL varients of rustup container
Some checks failed
publish / docker (push) Failing after 5m25s

This commit is contained in:
2025-10-04 16:17:45 -05:00
parent 5125d13833
commit fff50ab102
2 changed files with 12 additions and 0 deletions

View File

@@ -31,3 +31,5 @@ ENV PATH=/root/.cargo/bin:$PATH
ARG EXTRA=""
RUN for name in "$EXTRA"; do rustup install $name; done
ARG TARGETS=""
RUN for name in "$TARGETS"; do rustup target add $name; done