Expand README with desktop platform requirements (Windows x86, macOS ARM), helper build commands, gateway utility scripts, and updated local test flow. Add realistic MVP usage section clarifying current platform build status, gateway configuration needs, and admin debug profile behavior with client private key handling.
9 lines
214 B
Docker
9 lines
214 B
Docker
FROM alpine:3.21
|
|
|
|
RUN apk add --no-cache bash curl jq wireguard-tools nftables
|
|
|
|
WORKDIR /app
|
|
COPY scripts/gateway-entrypoint.sh /scripts/gateway-entrypoint.sh
|
|
|
|
ENTRYPOINT ["bash", "/scripts/gateway-entrypoint.sh"]
|