Skip to content
This repository has been archived by the owner on Dec 26, 2024. It is now read-only.

Commit

Permalink
build(release): update Dockerfile to use rust 1.75 (#1692)
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-starkware authored Feb 8, 2024
1 parent 4fe8d61 commit 9661734
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# The reason we split it into two stages is to first copy all the files and then erase all
# non-Cargo.toml files. This way, non-Cargo.toml files won't affect the cache of the second stage
# (For more on docker stages, read https://docs.docker.com/build/building/multi-stage/).
FROM rust:1.73 AS copy_toml
FROM rust:1.75 AS copy_toml

COPY crates/ /app/crates/
COPY Cargo.toml /app/
Expand All @@ -32,7 +32,7 @@ RUN find /app \! -name "Cargo.toml" -type f -delete ; \
# Starting a new stage so that the first build layer will be cached if a non-Cargo.toml file was
# changed.
# Use this image to compile the project to an alpine compatible binary.
FROM clux/muslrust:1.73.0-stable AS builder
FROM clux/muslrust:1.75.0-stable AS builder
WORKDIR /app/

RUN apt update && apt install -y clang protobuf-compiler
Expand Down

0 comments on commit 9661734

Please sign in to comment.