diff options
| author | Fuwn <[email protected]> | 2023-04-17 06:26:04 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-17 06:26:04 +0000 |
| commit | f63573926497233f4c278ff30ef4b878ea32c06a (patch) | |
| tree | bf536a8c904ee8448aef85a51e63b9fc0e8e52c8 /Dockerfile | |
| parent | fix(to_html): messy markdown to html conversion (diff) | |
| download | september-f63573926497233f4c278ff30ef4b878ea32c06a.tar.xz september-f63573926497233f4c278ff30ef4b878ea32c06a.zip | |
ci(docker): bump rustc
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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 |