echo-ip-rust/Dockerfile
2023-01-08 02:45:02 +08:00

6 lines
126 B
Docker

FROM scratch
MAINTAINER Yaser Hsueh
WORKDIR /
COPY target/x86_64-unknown-linux-musl/release/echo-ip .
ENTRYPOINT ["/echo-ip"]