pantrace 0.6.2

Convert between traceroute formats.
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:latest as builder
WORKDIR /usr/src/pantrace
COPY . .
# https://github.com/rust-lang/cargo/issues/10781
# A proper solution would be to cross-compile instead of doing emulated builds on GH.
RUN cargo install --config net.git-fetch-with-cli=true --path .

FROM ubuntu:latest
COPY --from=builder /usr/local/cargo/bin/pantrace /usr/local/bin/pantrace
ENTRYPOINT ["pantrace"]