Files
Alex Xie 83b20b3078 gateway: clarify macOS sidecar naming and startup (#67)
Align the macOS example with the repo's existing fips-gateway binary name and override the test image entrypoint so first-run identity generation succeeds.
2026-04-15 07:01:45 +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-sidecar.sh /usr/local/bin/entrypoint-sidecar.sh
RUN chmod +x /usr/local/bin/entrypoint-sidecar.sh
ENTRYPOINT ["/usr/local/bin/entrypoint-sidecar.sh"]