Rustbot/Dockerfile

22 lines
657 B
Docker
Raw Normal View History

2024-05-02 19:25:29 -04:00
FROM rust:1.78-alpine3.19@sha256:9b421636ae538fda3c7b98d52a5048d2a09abb7ff76e0298709cc2509fd045a7 AS chef
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 . .
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
FROM alpine:3.19@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
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