Skip to content

Commit

Permalink
Dockerfile: Switch from builder from 1:83-debian to 1:84-alpine
Browse files Browse the repository at this point in the history
  • Loading branch information
lennart-k committed Jan 13, 2025
1 parent d276345 commit 12d267b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM rust:1.83 AS chef
RUN apt-get update \
&& apt-get install -y musl-dev musl-tools --no-install-recommends \
FROM rust:1.84-alpine AS chef
RUN apk add --no-cache musl-dev \
&& rustup target add x86_64-unknown-linux-musl \
&& cargo install cargo-chef --locked \
&& rm -rf "$CARGO_HOME/registry"

WORKDIR /rustical

FROM chef AS planner
Expand Down

0 comments on commit 12d267b

Please sign in to comment.