Files
NexaVPN/deploy/gateway/Dockerfile
nessi 6ec5133773 docs: update README with desktop requirements, helper builds, and realistic MVP usage notes
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.
2026-03-16 06:30:08 +01:00

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"]