Files
fips/examples/wireguard-sidecar-macos/Dockerfile
Alex Xie 7258469b18 gateway: add macOS wireguard sidecar example (#51)
Add a documented macOS sidecar setup under examples so gateway traffic can be routed through a local Docker WireGuard sidecar for development and testing. Generate persistent FIPS and WireGuard key material on first run and keep those local runtime artifacts out of version control.
2026-04-10 11:36:30 +01:00

11 lines
319 B
Docker

FROM fips-test:latest
RUN apt-get update && \
apt-get install -y --no-install-recommends vim wireguard-tools && \
rm -rf /var/lib/apt/lists/*
COPY entrypoint-gateway.sh /usr/local/bin/entrypoint-gateway.sh
RUN chmod +x /usr/local/bin/entrypoint-gateway.sh
ENTRYPOINT ["/usr/local/bin/entrypoint-gateway.sh"]