Spaces:
Paused
Paused
Update Dockerfile
Browse files- 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
|
| 9 |
-
|
| 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
|