mirror of
https://github.com/mii443/fendbot.git
synced 2025-08-22 15:05:38 +00:00
20 lines
680 B
Docker
20 lines
680 B
Docker
FROM lukemathwalker/cargo-chef:latest-rust-1.81.0 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 apt-get update && apt-get install -y --no-install-recommends libssl-dev pkg-config gcc && apt-get -y clean
|
|
RUN cargo chef cook --release --recipe-path recipe.json
|
|
COPY . .
|
|
RUN cargo b -r
|
|
|
|
FROM ubuntu:22.04 AS runtime
|
|
WORKDIR /fendbot
|
|
RUN apt-get update && apt-get install -y --no-install-recommends openssl ca-certificates libssl-dev && apt-get -y clean
|
|
COPY --from=builder /app/target/release/fendbot /usr/local/bin
|
|
ENTRYPOINT ["/usr/local/bin/fendbot"]
|