2019-03-22 20:11:09 +07:00
|
|
|
FROM ubuntu:18.04
|
|
|
|
|
|
|
|
ENV IS_IN_CONTAINER 1
|
|
|
|
|
|
|
|
RUN apt-get update \
|
2019-03-22 20:37:41 +07:00
|
|
|
&& apt-get -qy install git python3 wget ca-certificates
|
2019-03-22 20:11:09 +07:00
|
|
|
|
|
|
|
COPY . /source/WireGuard
|
|
|
|
|
|
|
|
ENTRYPOINT exec /source/WireGuard/build.sh
|