11 lines
No EOL
157 B
Docker
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"] |