From e503f031863343247160ea017807bf3fa2e7931c Mon Sep 17 00:00:00 2001 From: Ronald Holshausen Date: Thu, 29 Oct 2020 14:32:51 +1100 Subject: [PATCH] chore: docker container in GH actions seems to need the default rust toolchain set --- native/Dockerfile.musl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/native/Dockerfile.musl b/native/Dockerfile.musl index c2877a9ff..2f78f2afc 100644 --- a/native/Dockerfile.musl +++ b/native/Dockerfile.musl @@ -11,6 +11,8 @@ RUN touch /root/.bashrc && touch /root/.profile RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-host x86_64-unknown-linux-musl ENV PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin +RUN rustup install stable +RUN rustup default stable ENV NVM_DIR /root/.nvm ENV NVM_NODEJS_ORG_MIRROR=https://unofficial-builds.nodejs.org/download/release