rust-static-binary-example/Dockerfile

4 lines
95 B
Docker
Raw Normal View History

2020-02-07 10:11:23 -06:00
FROM scratch
ADD target/x86_64-unknown-linux-musl/release/hello_world /app
ENTRYPOINT ["/app"]