easy-wg-quick/Dockerfile
dependabot[bot] 9013c25626
Bump alpine from 3.23.0 to 3.23.2
Bumps alpine from 3.23.0 to 3.23.2.

---
updated-dependencies:
- dependency-name: alpine
  dependency-version: 3.23.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-24 13:03:04 +00:00

13 lines
241 B
Docker

FROM alpine:3.23.2
RUN apk add --no-cache wireguard-tools libqrencode-tools
COPY easy-wg-quick /usr/bin/easy-wg-quick
RUN chmod +x /usr/bin/easy-wg-quick && \
mkdir /pwd
VOLUME /pwd
WORKDIR /pwd
ENTRYPOINT ["/usr/bin/easy-wg-quick"]