mirror of
https://github.com/burghardt/easy-wg-quick.git
synced 2026-01-20 16:12:06 +01:00
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>
13 lines
241 B
Docker
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"]
|