You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kyanite/Dockerfile

11 lines
157 B

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