rust-static-binary-example/Dockerfile
2020-02-07 10:11:23 -06:00

4 lines
95 B
Docker

FROM scratch
ADD target/x86_64-unknown-linux-musl/release/hello_world /app
ENTRYPOINT ["/app"]