2024-08-08 20:04:31 -04:00
|
|
|
FROM rust:1.80-alpine3.19@sha256:b3ac1f65cf33390407c9b90558eb41e7a8311c47d836fca5800960f1aa2d11d5 AS chef
|
2024-05-02 19:25:29 -04:00
|
|
|
ENV RUSTFLAGS -C target-feature=-crt-static
|
|
|
|
RUN apk add --no-cache openssl-dev musl-dev
|
|
|
|
RUN cargo install cargo-chef
|
2023-12-08 05:19:17 -05:00
|
|
|
WORKDIR /usr/src/rustbot
|
2024-05-02 19:25:29 -04:00
|
|
|
|
|
|
|
FROM chef AS planner
|
|
|
|
COPY . .
|
2024-05-02 19:47:57 -04:00
|
|
|
RUN mkdir -p .cargo && \
|
|
|
|
printf '[registries.gitea]\nindex = "sparse+https://git.toast-server.net/api/packages/toast/cargo/"\ntoken = "Bearer %s"\n' "$CARGO_TOKEN" >> .cargo/config.toml
|
2024-05-02 19:25:29 -04:00
|
|
|
RUN cargo chef prepare
|
|
|
|
|
|
|
|
FROM chef AS builder
|
|
|
|
COPY --from=planner /usr/src/rustbot/recipe.json recipe.json
|
|
|
|
RUN cargo chef cook --release
|
2023-12-08 05:19:17 -05:00
|
|
|
COPY . .
|
2024-05-02 19:25:29 -04:00
|
|
|
RUN cargo build -r
|
2023-12-08 05:19:17 -05:00
|
|
|
|
2024-07-22 18:51:50 -04:00
|
|
|
FROM alpine:3.20@sha256:0a4eaa0eecf5f8c050e5bba433f58c052be7587ee8af3e8b3910ef9ab5fbe9f5
|
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-05-02 19:25:29 -04:00
|
|
|
COPY --from=builder /usr/src/rustbot/target/release/rustbot .
|
|
|
|
CMD ./rustbot
|