diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..174f6f6 --- /dev/null +++ b/Containerfile @@ -0,0 +1,20 @@ +FROM docker.io/library/rust:latest AS chef +RUN cargo install cargo-chef +WORKDIR app + +FROM chef AS planner +COPY . . +RUN cargo chef prepare --recipe-path recipe.json + +FROM chef AS builder +COPY --from=planner /app/recipe.json recipe.json +RUN cargo chef cook --release --recipe-path recipe.json +COPY . . +RUN cargo build --release --bin contact-form + +FROM docker.io/library/debian:stable-slim AS runtime +WORKDIR app +ENV CF_CONFIG_FILE=/volumes/data/config.yaml +COPY --from=builder /app/target/release/contact-form /usr/local/bin/contact-form +COPY --from=builder /app/static . +CMD ["contact-form"]