mirror of
https://github.com/jmcorgan/fips.git
synced 2026-07-22 07:48:26 +00:00
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.
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-sidecar.sh /usr/local/bin/entrypoint-sidecar.sh
|
|
RUN chmod +x /usr/local/bin/entrypoint-sidecar.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint-sidecar.sh"]
|