From 74ee4ecd757d55b496073e16d9f7a9eeb48ad4fd Mon Sep 17 00:00:00 2001 From: Oliver Ni Date: Sat, 19 Aug 2023 14:59:15 -0700 Subject: [PATCH] Fix rust toolchain version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9a247e1..fa7937f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV RUSTFLAGS "-Lnative=/usr/lib -C target-cpu=${TARGET_CPU}" RUN apk upgrade && \ apk add curl gcc g++ musl-dev cmake make && \ - curl -sSf https://sh.rustup.rs | sh -s -- --profile minimal --component rust-src --default-toolchain nightly -y + curl -sSf https://sh.rustup.rs | sh -s -- --profile minimal --component rust-src --default-toolchain nightly-2023-06-27 -y WORKDIR /build