FROM rust:latest WORKDIR /usr/src/myapp COPY . . RUN cargo install --path . CMD ["./target/release/hello_world"]