tailscale-localapi 0.6.0

Client for the Tailscale local API
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rust:1

WORKDIR /workspace
COPY Cargo.toml ./
COPY src ./src
COPY tests ./tests
RUN cargo test --test headscale --no-run

ENV TAILSCALE_SOCKET=/var/run/tailscale/tailscaled.sock
CMD ["cargo", "test", "--test", "headscale", "--", "--ignored", "--nocapture"]