echo-ip-rust/Dockerfile

7 lines
165 B
Docker
Raw Permalink Normal View History

2023-01-07 18:45:02 +00:00
FROM scratch
2024-10-05 03:18:00 +00:00
LABEL maintainer="Yezzi Hsueh <xueye404@gmail.com>"
2023-01-07 18:45:02 +00:00
WORKDIR /
2024-10-05 03:18:00 +00:00
COPY target/x86_64-unknown-linux-musl/release/ipecho .
EXPOSE 8888
ENTRYPOINT ["/ipecho"]