Kon/Dockerfile

26 lines
883 B
Docker
Raw Normal View History

2024-05-02 19:21:22 -04:00
FROM rust:1.78-alpine3.19@sha256:9b421636ae538fda3c7b98d52a5048d2a09abb7ff76e0298709cc2509fd045a7 AS chef
2024-05-02 15:26:05 -04:00
ENV RUSTFLAGS -C target-feature=-crt-static
2024-03-25 22:04:12 -04:00
ARG CARGO_TOKEN
2024-05-02 15:26:05 -04:00
RUN apk add --no-cache openssl-dev musl-dev
RUN cargo install cargo-chef
WORKDIR /usr/src/kon
2024-05-02 15:26:05 -04:00
FROM chef AS planner
COPY . .
2024-03-25 22:04:12 -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 15:26:05 -04:00
RUN cargo chef prepare
FROM chef AS builder
COPY --from=planner /usr/src/kon/recipe.json recipe.json
RUN cargo chef cook --release
COPY . .
RUN cargo build -r
FROM alpine:3.19@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
2024-05-02 15:26:05 -04:00
RUN apk add --no-cache libgcc
WORKDIR /kon
2024-05-02 15:26:05 -04:00
COPY --from=builder /usr/src/kon/target/release/kon .
COPY --from=builder /usr/src/kon/Cargo.toml .
CMD ./kon