mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-27 11:31:11 +00:00
Update Dockerfile.
This commit is contained in:
parent
92f9157777
commit
661a5b49e7
1 changed files with 5 additions and 9 deletions
14
Dockerfile
14
Dockerfile
|
@ -1,22 +1,18 @@
|
|||
FROM lukemathwalker/cargo-chef:latest-rust-1.53.0 as planner
|
||||
FROM lukemathwalker/cargo-chef:latest-rust-1.53.0 as chef
|
||||
WORKDIR /app
|
||||
|
||||
FROM chef as planner
|
||||
COPY . .
|
||||
# Compute a lock-like file for our project
|
||||
RUN cargo chef prepare --recipe-path recipe.json
|
||||
|
||||
FROM lukemathwalker/cargo-chef:latest-rust-1.53.0 as cacher
|
||||
WORKDIR /app
|
||||
FROM chef as builder
|
||||
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.53.0 AS builder
|
||||
WORKDIR /app
|
||||
# Copy over the cached dependencies
|
||||
COPY --from=cacher /app/target target
|
||||
COPY --from=cacher /usr/local/cargo /usr/local/cargo
|
||||
COPY . .
|
||||
ENV SQLX_OFFLINE true
|
||||
# Build our project
|
||||
RUN cargo build --release --bin zero2prod
|
||||
|
||||
FROM debian:buster-slim AS runtime
|
||||
|
|
Loading…
Reference in a new issue