aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-03-05 05:31:22 -0800
committerFuwn <[email protected]>2024-03-05 05:31:22 -0800
commit093c7ac678628b478f0b8888108ef50988aee2ad (patch)
tree6c73cb3ca0c5e481816bcf85992283c5df2fb8e9 /Dockerfile
parentfix(response): unused members (diff)
downloadlocus-093c7ac678628b478f0b8888108ef50988aee2ad.tar.xz
locus-093c7ac678628b478f0b8888108ef50988aee2ad.zip
feat(rustc): bump nightly
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 7e5181d..33d59e1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
-FROM clux/muslrust:nightly-2023-04-15 AS environment
+FROM clux/muslrust:nightly-2024-02-01 AS environment
-ENV CHANNEL=nightly-2023-04-15
+ENV CHANNEL=nightly-2024-02-01
RUN curl "https://static.rust-lang.org/rustup/archive/${RUSTUP_VER}/${RUST_ARCH}/rustup-init" -o rustup-init \
&& chmod +x rustup-init \
@@ -23,7 +23,7 @@ RUN cargo install \
--rev 693a0d40aaf2dab5acea84ee8de15ec36dd12199 \
fleet-rs
-RUN rustup component add rust-src --toolchain nightly-2023-04-15-x86_64-unknown-linux-gnu
+RUN rustup component add rust-src --toolchain nightly-2024-02-01-x86_64-unknown-linux-gnu
FROM environment as builder