aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-08-29 18:22:33 -0700
committerFuwn <[email protected]>2024-09-02 13:54:54 -0700
commit9d3bb8f015b6a622fc9bdb31343e47772e33c1dd (patch)
treeb818adf7d6cb145b794c582d459cf52e6a34b3e0
parentdeps(rustc): pin channel (diff)
downloadlocus-9d3bb8f015b6a622fc9bdb31343e47772e33c1dd.tar.xz
locus-9d3bb8f015b6a622fc9bdb31343e47772e33c1dd.zip
deps(rustc): pin channel
-rw-r--r--Dockerfile4
-rw-r--r--Earthfile2
2 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 4cf5374..cef3617 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,8 @@
-FROM clux/muslrust:nightly as dependencies
+FROM clux/muslrust:nightly-2024-07-17 as dependencies
RUN rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
-FROM clux/muslrust:nightly as build
+FROM clux/muslrust:nightly-2024-07-17 as build
WORKDIR /source
diff --git a/Earthfile b/Earthfile
index 7c4d030..0ff237d 100644
--- a/Earthfile
+++ b/Earthfile
@@ -20,7 +20,7 @@ docker:
SAVE IMAGE --push fuwn/locus:$tag
deps:
- ARG rustc="nightly"
+ ARG rustc="nightly-2024-07-17"
FROM clux/muslrust:${rustc}