1
0
Fork 0
mirror of https://github.com/mat-1/metasearch2.git synced 2025-08-02 15:26:04 +00:00
metasearch2/Containerfile
2025-04-07 00:54:15 -05:00

21 lines
593 B
Docker

FROM lukemathwalker/cargo-chef:latest-rust-slim as 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
FROM debian:bookworm-slim AS runtime
WORKDIR /app
COPY --from=builder /app/config.toml /usr/local/bin/config.toml
COPY --from=builder /app/target/release/metasearch /usr/local/bin/metasearch
ARG CONFIG
ENV CONFIG=${CONFIG}
EXPOSE 28019
ENTRYPOINT /usr/local/bin/metasearch $CONFIG