Create Dockerfile1

dependabot/github_actions/actions/checkout-3.1.0
fscarmen 4 years ago committed by GitHub
parent e79d47cb78
commit 7c9a1e0d35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      Dockerfile1

@ -0,0 +1,16 @@
FROM alpine
ENV DIR=/etc/wireguard
WORKDIR $DIR
RUN apk add --no-cache tzdata wireguard-tools curl \
&& rm -rf /var/cache/apk/* \
&& arch=$(arch | sed s/aarch64/arm64/ | sed s/x86_64/amd64/) \
&& latest=$(wget -qO- "https://api.github.com/repos/ViRb3/wgcf/releases/latest" | grep "tag_name" | head -n 1 | cut -d : -f2 | sed 's/[ \"v,]//g') \
&& wget -O wgcf https://github.com/ViRb3/wgcf/releases/download/v$latest/wgcf_"$latest"_linux_$arch \
&& echo -e "./wgcf register --accept-tos\n./wgcf generate -p wgcf.conf\nrm -rf wgcf wgcf-account.toml\nwg-quick up wgcf;" > wgcf.sh \
&& chmod +x gost wgcf.sh
&& top
ENTRYPOINT ./wgcf.sh
Loading…
Cancel
Save