contact-form/Containerfile

21 lines
566 B
Text
Raw Normal View History

2023-02-25 20:43:55 +00:00
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 . .
2023-02-26 18:58:38 +00:00
RUN cargo build --release --bin oxiform
2023-02-25 20:43:55 +00:00
FROM docker.io/library/debian:stable-slim AS runtime
WORKDIR app
ENV CF_DATA_DIR=/volumes/data
2023-02-26 18:58:38 +00:00
COPY --from=builder /app/target/release/oxiform /usr/local/bin/oxiform
2023-02-25 21:17:59 +00:00
COPY --from=builder /app/static/ ./static/
2023-02-26 18:58:38 +00:00
CMD ["oxiform"]