Use latest Rust version.

This commit is contained in:
LukeMathWalker 2021-02-12 09:25:00 +00:00
parent 352a6b5a50
commit d482a224d1

View file

@ -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