2025-01-11 01:31:56 +07:00
|
|
|
FROM rust:alpine AS builder
|
2022-04-11 10:15:15 +07: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"]
|