aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-17 06:26:04 +0000
committerFuwn <[email protected]>2023-04-17 06:26:04 +0000
commit0ecd36aeaae74694f938a0972fa5057b18e15fe4 (patch)
treee3ee5a6f94a15c6de3ed66cfd10515906eaeca2c /Dockerfile
parentfix(to_html): messy markdown to html conversion (diff)
downloadarchived-september-0ecd36aeaae74694f938a0972fa5057b18e15fe4.tar.xz
archived-september-0ecd36aeaae74694f938a0972fa5057b18e15fe4.zip
ci(docker): bump rustc
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Dockerfile b/Dockerfile
index 3f21f5f..c98a751 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,13 +1,13 @@
-FROM clux/muslrust:1.66.0 AS environment
+FROM clux/muslrust:1.68.2 AS environment
-ENV CHANNEL=1.66.0
+ENV CHANNEL=1.68.2
RUN curl "https://static.rust-lang.org/rustup/archive/${RUSTUP_VER}/${RUST_ARCH}/rustup-init" -o rustup-init \
- && chmod +x rustup-init \
- && ./rustup-init -y --default-toolchain ${CHANNEL} --profile minimal \
- && rm rustup-init \
- && ~/.cargo/bin/rustup target add x86_64-unknown-linux-musl \
- && echo "[build]\ntarget = \"x86_64-unknown-linux-musl\"" > ~/.cargo/config
+ && chmod +x rustup-init \
+ && ./rustup-init -y --default-toolchain ${CHANNEL} --profile minimal \
+ && rm rustup-init \
+ && ~/.cargo/bin/rustup target add x86_64-unknown-linux-musl \
+ && echo "[build]\ntarget = \"x86_64-unknown-linux-musl\"" > ~/.cargo/config
RUN cargo install sccache