This repository has been archived on 2025-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
kyanite/Dockerfile

11 lines
157 B
Text
Raw Permalink Normal View History

2023-02-03 21:46:30 -08:00
FROM rust:1.67-slim as build
COPY ./ ./
RUN cargo build --release
FROM debian:stable-slim
2023-02-04 23:46:54 -08:00
COPY --from=build ./target/release/kyanite .
2023-02-03 21:46:30 -08:00
2023-02-04 23:46:54 -08:00
CMD ["./kyanite"]