LoremPizza commited on
Commit
0693c38
·
verified ·
1 Parent(s): 9ad1c9d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -5,10 +5,9 @@ RUN apt-get update && \
5
  apt-get install -y curl wireguard-tools
6
 
7
  # Download and install WGCF
8
- RUN curl -L https://github.com/ViRb3/wgcf/releases/download/v2.2.11/wgcf_amd64-linux.tar.gz -o wgcf.tar.gz && \
9
- tar -xzvf wgcf.tar.gz && \
10
- mv wgcf /usr/local/bin/ && \
11
- chmod +x /usr/local/bin/wgcf
12
 
13
  # Set environment variable for WGCF
14
  ENV WGCF_CONFIG_PATH=/etc/wireguard/wgcf.conf
 
5
  apt-get install -y curl wireguard-tools
6
 
7
  # Download and install WGCF
8
+ RUN curl -L https://github.com/ViRb3/wgcf/releases/download/v2.2.11/wgcf_amd64-linux -o wgcf && \
9
+ chmod +x wgcf && \
10
+ mv wgcf /usr/local/bin/
 
11
 
12
  # Set environment variable for WGCF
13
  ENV WGCF_CONFIG_PATH=/etc/wireguard/wgcf.conf