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