rslocal 0.1.0

A tunnel to localhost built in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:1.59 as builder
WORKDIR /opt/rslocal
COPY . .
RUN apt-get update && apt-get install -y cmake protobuf-compiler && rm -rf /var/lib/apt/lists/*
RUN cargo install --path .

FROM debian:buster-slim
COPY rslocald.toml /etc/rslocal/rslocald.toml
COPY --from=builder /usr/local/cargo/bin/rslocald /usr/local/bin/rslocald
CMD ["rslocald"]