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