Kon/Dockerfile
toast a048f96faf
All checks were successful
Build and push container image / build (push) Successful in 7m33s
I wonder if this will ever work..
2024-01-07 23:57:46 +11:00

14 lines
580 B
Docker

FROM rust:1.75-alpine3.19@sha256:8eaab14d138f0d61240da09aeadb87fcd9c2593975b8852d1bc02ccf988861ba AS compiler
ENV RUSTFLAGS="-C target-feature=-crt-static"
RUN apk add --no-cache openssl-dev musl-dev
WORKDIR /usr/src/kon
COPY . .
RUN --mount=type=cache,target=/usr/local/cargo/registry cargo fetch && cargo build -r
FROM alpine:3.19@sha256:51b67269f354137895d43f3b3d810bfacd3945438e94dc5ac55fdac340352f48
RUN apk add --no-cache openssl-dev libgcc
WORKDIR /kon
COPY --from=compiler /usr/src/kon/target/release/kon .
COPY --from=compiler /usr/src/kon/Cargo.toml .
CMD [ "./kon" ]