Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Rust image to 1.84.1 #14

Merged
merged 2 commits into from
Feb 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ghcr.io/rust-cross/rust-musl-cross:x86_64-musl AS musl_x86_64
FROM ghcr.io/rust-cross/rust-musl-cross:aarch64-musl AS musl_aarch64

FROM rust:1.82.0-slim-bookworm AS build-base
FROM rust:1.84.1-slim-bookworm AS build-base

# Prepopulate cargo index and install dependencies
RUN cargo search --limit=1 && \
Expand All @@ -28,7 +28,7 @@ RUN rustup target add \
x86_64-unknown-linux-gnu \
aarch64-unknown-linux-gnu && \
rustup component add clippy rustfmt && \
cargo install cargo-chef@0.1.68 cargo-license@0.6.1 cargo-hakari@0.9.35
cargo install cargo-chef@0.1.71 cargo-license@0.6.1 cargo-hakari@0.9.35

# Install `just`
RUN curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/local/bin
Expand Down