2025-01-10 19:31:56 +01:00
|
|
|
FROM rust:alpine AS builder
|
2022-04-11 06:15:15 +03:00
|
|
|
WORKDIR /home/rust/src
|
|
|
|
RUN apk --no-cache add musl-dev
|
|
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /usr/local/cargo/bin/bore .
|
|
|
|
USER 1000:1000
|
|
|
|
ENTRYPOINT ["./bore"]
|