25 lines
785 B
Docker
25 lines
785 B
Docker
FROM rust:1.81-alpine3.20@sha256:e4ab5bdd6d6c93e984ba5d320691d7f4bddb1e061102a1def6ec203de8547472 AS chef
|
|
ENV RUSTFLAGS="-C target-feature=-crt-static"
|
|
ARG GIT_HASH
|
|
ENV GIT_COMMIT_HASH=${GIT_HASH}
|
|
RUN apk add --no-cache openssl-dev musl-dev
|
|
RUN cargo install cargo-chef
|
|
WORKDIR /builder
|
|
|
|
FROM chef AS planner
|
|
COPY . .
|
|
RUN cargo chef prepare
|
|
|
|
FROM chef AS builder
|
|
COPY --from=planner /builder/recipe.json recipe.json
|
|
RUN cargo chef cook --release
|
|
COPY . .
|
|
RUN cargo build --offline -rF production
|
|
|
|
FROM alpine:3.20@sha256:e417839c51cd76908ea4ec131f132ac80a9e77d345d8a4dbc3ab2ab784f8ee6c
|
|
LABEL org.opencontainers.image.source="https://git.toast-server.net/toast/Rustbot"
|
|
RUN apk add --no-cache libgcc
|
|
WORKDIR /rustbot
|
|
COPY --from=builder /builder/target/release/rustbot .
|
|
CMD ./rustbot
|