mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2025-01-31 11:02:29 +00:00
Use latest Rust version.
This commit is contained in:
parent
352a6b5a50
commit
d482a224d1
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ COPY --from=planner /app/recipe.json recipe.json
|
|||
# Build our project dependencies, not our application!
|
||||
RUN cargo chef cook --release --recipe-path recipe.json
|
||||
|
||||
FROM rust:1.49 AS builder
|
||||
FROM rust:1.50 AS builder
|
||||
WORKDIR app
|
||||
# Copy over the cached dependencies
|
||||
COPY --from=cacher /app/target target
|
||||
|
|
Loading…
Reference in a new issue