7 lines
No EOL
157 B
Docker
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"] |