dood/Dockerfile
2026-01-16 16:22:12 -08:00

7 lines
No EOL
157 B
Docker

FROM rust:latest
WORKDIR /app
COPY . .
RUN cargo build --release
# RFE: Statically link for a scratch runtime stage.
CMD ["/app/target/release/hello-world"]