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
2023-02-03 21:46:30 -08:00

11 lines
No EOL
169 B
Docker

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