2022-03-09 09:47:30 +00:00
|
|
|
FROM lukemathwalker/cargo-chef:latest-rust-1.59.0 as chef
|
2021-07-11 18:25:37 +00:00
|
|
|
WORKDIR /app
|
2022-03-11 22:46:21 +00:00
|
|
|
RUN apt update && apt install lld clang -y
|
2021-08-31 21:39:41 +00:00
|
|
|
|
|
|
|
FROM chef as planner
|
2020-11-01 21:25:11 +00:00
|
|
|
COPY . .
|
|
|
|
# Compute a lock-like file for our project
|
|
|
|
RUN cargo chef prepare --recipe-path recipe.json
|
|
|
|
|
2021-08-31 21:39:41 +00:00
|
|
|
FROM chef as builder
|
2020-11-01 21:25:11 +00:00
|
|
|
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-01 23:27:34 +00:00
|
|
|
COPY . .
|
|
|
|
ENV SQLX_OFFLINE true
|
2021-08-31 21:39:41 +00:00
|
|
|
# Build our project
|
2020-12-05 17:19:11 +00:00
|
|
|
RUN cargo build --release --bin zero2prod
|
2020-11-01 21:25:11 +00:00
|
|
|
|
2021-09-30 20:23:08 +00:00
|
|
|
FROM debian:bullseye-slim AS runtime
|
2021-07-11 18:25:37 +00:00
|
|
|
WORKDIR /app
|
2020-11-04 10:09:04 +00:00
|
|
|
RUN apt-get update -y \
|
2022-03-14 11:42:16 +00:00
|
|
|
&& apt-get install -y --no-install-recommends openssl ca-certificates \
|
2020-11-04 10:09:04 +00:00
|
|
|
# Clean up
|
2021-07-11 18:25:37 +00:00
|
|
|
&& 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"]
|