proxyfor 0.5.0

A powerful and flexible proxy CLI for capturing and inspecting HTTP(S) and WS(S) traffic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM --platform=linux/amd64 messense/rust-musl-cross:x86_64-musl AS amd64
COPY . .
RUN cargo install --path . --root /

FROM --platform=linux/amd64 messense/rust-musl-cross:aarch64-musl AS arm64
COPY . .
RUN cargo install --path . --root /

FROM ${TARGETARCH} AS builder

FROM scratch
COPY --from=builder /bin/proxyfor /bin/proxyfor
VOLUME /.proxyfor
STOPSIGNAL SIGINT
ENTRYPOINT ["/bin/proxyfor"]