mirror of
https://github.com/jmcorgan/fips.git
synced 2026-07-22 07:48:26 +00:00
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.
11 lines
319 B
Docker
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"]
|