2020-11-04 10:09:04 +00:00
|
|
|
FROM rust:1.47 AS planner
|
2020-11-01 21:25:11 +00:00
|
|
|
WORKDIR app
|
|
|
|
# We only pay the installation cost once,
|
|
|
|
# it will be cached from the second build onwards
|
|
|
|
# To ensure a reproducible build consider pinning
|
|
|
|
# the cargo-chef version with `--version X.X.X`
|
|
|
|
RUN cargo install cargo-chef
|
|
|
|
COPY . .
|
|
|
|
# Compute a lock-like file for our project
|
|
|
|
RUN cargo chef prepare --recipe-path recipe.json
|
|
|
|
|
2020-11-04 10:09:04 +00:00
|
|
|
FROM rust:1.47 AS cacher
|
2020-11-01 21:25:11 +00:00
|
|
|
WORKDIR app
|
|
|
|
RUN cargo install cargo-chef
|
|
|
|
COPY --from=planner /app/recipe.json recipe.json
|
|
|
|
# Build our project dependencies, not our application!
|
|
|
|
RUN cargo chef cook --release --recipe-path recipe.json
|
|
|
|
|
2020-11-04 10:09:04 +00:00
|
|
|
FROM rust:1.47 AS builder
|
2020-11-01 21:25:11 +00:00
|
|
|
WORKDIR app
|
|
|
|
# Copy over the cached dependencies
|
|
|
|
COPY --from=cacher /app/target target
|
|
|
|
COPY --from=cacher /usr/local/cargo /usr/local/cargo
|
2020-11-01 23:27:34 +00:00
|
|
|
COPY . .
|
2020-11-01 21:25:11 +00:00
|
|
|
# Build our application, leveraging the cached deps!
|
2020-11-01 23:27:34 +00:00
|
|
|
ENV SQLX_OFFLINE true
|
2020-12-05 17:19:11 +00:00
|
|
|
RUN cargo build --release --bin zero2prod
|
2020-11-01 21:25:11 +00:00
|
|
|
|
2020-11-04 10:09:04 +00:00
|
|
|
FROM debian:buster-slim AS runtime
|
2020-11-01 21:25:11 +00:00
|
|
|
WORKDIR app
|
2020-11-04 10:09:04 +00:00
|
|
|
RUN apt-get update -y \
|
|
|
|
&& apt-get install -y --no-install-recommends openssl \
|
|
|
|
# Clean up
|
|
|
|
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/*
|
2020-12-05 17:19:11 +00:00
|
|
|
COPY --from=builder /app/target/release/zero2prod zero2prod
|
2020-11-01 21:25:11 +00:00
|
|
|
COPY configuration configuration
|
|
|
|
ENV APP_ENVIRONMENT production
|
2020-11-01 23:27:34 +00:00
|
|
|
ENTRYPOINT ["./zero2prod"]
|