2024-09-06 23:09:11 -04:00
|
|
|
FROM rust:1.81-alpine3.20@sha256:d57abe50ab0037f861817a85b4a26c8211d91075b5cca94a133ed02f803cd7c1 AS chef
|
2024-08-09 18:19:59 -04:00
|
|
|
ENV RUSTFLAGS="-C target-feature=-crt-static"
|
|
|
|
ARG GIT_HASH
|
|
|
|
ENV GIT_COMMIT_HASH=${GIT_HASH}
|
2024-05-02 19:25:29 -04:00
|
|
|
RUN apk add --no-cache openssl-dev musl-dev
|
|
|
|
RUN cargo install cargo-chef
|
2024-08-09 18:19:59 -04:00
|
|
|
WORKDIR /builder
|
2024-05-02 19:25:29 -04:00
|
|
|
|
|
|
|
FROM chef AS planner
|
|
|
|
COPY . .
|
|
|
|
RUN cargo chef prepare
|
|
|
|
|
|
|
|
FROM chef AS builder
|
2024-08-09 18:19:59 -04:00
|
|
|
COPY --from=planner /builder/recipe.json recipe.json
|
2024-05-02 19:25:29 -04:00
|
|
|
RUN cargo chef cook --release
|
2023-12-08 05:19:17 -05:00
|
|
|
COPY . .
|
2024-08-09 18:19:59 -04:00
|
|
|
RUN cargo build --offline -rF production
|
2023-12-08 05:19:17 -05:00
|
|
|
|
2024-09-06 19:28:38 -04:00
|
|
|
FROM alpine:3.20@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d
|
2024-08-09 18:19:59 -04:00
|
|
|
LABEL org.opencontainers.image.source="https://git.toast-server.net/toast/Rustbot"
|
2024-05-02 19:25:29 -04:00
|
|
|
RUN apk add --no-cache libgcc
|
2023-12-08 05:19:17 -05:00
|
|
|
WORKDIR /rustbot
|
2024-08-09 18:19:59 -04:00
|
|
|
COPY --from=builder /builder/target/release/rustbot .
|
2024-05-02 19:25:29 -04:00
|
|
|
CMD ./rustbot
|