dood/Dockerfile

7 lines
157 B
Text
Raw Normal View History

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