echo-ip-rust/Dockerfile

7 lines
165 B
Docker

FROM scratch
LABEL maintainer="Yezzi Hsueh <xueye404@gmail.com>"
WORKDIR /
COPY target/x86_64-unknown-linux-musl/release/ipecho .
EXPOSE 8888
ENTRYPOINT ["/ipecho"]