4 lines
95 B
Docker
4 lines
95 B
Docker
FROM scratch
|
|
ADD target/x86_64-unknown-linux-musl/release/hello_world /app
|
|
ENTRYPOINT ["/app"]
|