http-relay 0.6.0

A Rust implementation of _some_ of [Http relay spec](https://httprelay.io/).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM rust:1.84-alpine AS builder

RUN apk add --no-cache musl-dev

WORKDIR /app
COPY Cargo.toml Cargo.lock ./
COPY src ./src

RUN cargo build --release --all-features

FROM scratch

COPY --from=builder /app/target/release/http-relay /http-relay

EXPOSE 8080

ENTRYPOINT ["/http-relay"]