mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
155 B
7 lines
155 B
FROM alpine:3.17.0 AS alpine_wg
|
|
RUN apk add -U --no-cache wireguard-tools dumb-init
|
|
|
|
FROM alpine_wg AS runtime
|
|
WORKDIR /etc/wireguard
|
|
EXPOSE 8080
|
|
USER root
|