Skip to content

Commit

Permalink
chore(docker): upgrade versions in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Aug 16, 2022
1 parent b55e678 commit 6bb4f5b
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 lukemathwalker/cargo-chef:0.1.35-rust-1.60-slim-buster as planner
FROM lukemathwalker/cargo-chef:0.1.39-rust-1.63.0-slim-buster as planner
WORKDIR app
COPY . .
RUN cargo chef prepare --recipe-path recipe.json

FROM lukemathwalker/cargo-chef:0.1.35-rust-1.60-slim-buster as cacher
FROM lukemathwalker/cargo-chef:0.1.39-rust-1.63.0-slim-buster as cacher
WORKDIR app
RUN apt-get update && \
apt-get install -y --no-install-recommends \
Expand All @@ -12,7 +12,7 @@ COPY --from=planner /app/recipe.json recipe.json
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
RUN cargo chef cook --release --recipe-path recipe.json

FROM rust:1.60.0-slim-buster as builder
FROM rust:1.63.0-slim-buster as builder
WORKDIR app
RUN apt-get update && \
apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit 6bb4f5b

Please sign in to comment.