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
No EOL
157 B
Docker

FROM rust:1.67-slim as build
COPY ./ ./
RUN cargo build --release
FROM debian:stable-slim
COPY --from=build ./target/release/kyanite .
CMD ["./kyanite"]