6 lines
157 B
Text
6 lines
157 B
Text
|
FROM alpine
|
||
|
|
||
|
RUN apk add --no-cache wireguard-tools-wg-quick
|
||
|
COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh
|
||
|
ENTRYPOINT [ "/usr/local/bin/entrypoint.sh" ]
|