mirror of
https://github.com/AuxXxilium/synology-wireguard.git
synced 2024-11-23 23:11:06 +07:00
13 lines
232 B
Docker
13 lines
232 B
Docker
FROM ubuntu:latest
|
|
|
|
VOLUME [ "/toolkit_tarballs" ]
|
|
|
|
ENV IS_IN_CONTAINER 1
|
|
|
|
RUN apt-get update \
|
|
&& apt-get -qy install git python3 wget ca-certificates xz-utils
|
|
|
|
COPY . /source/WireGuard
|
|
|
|
ENTRYPOINT exec /source/WireGuard/build.sh
|