From 0b5545347d4167ab069fc0367eece55b97893166 Mon Sep 17 00:00:00 2001 From: winder9090 Date: Tue, 13 Jul 2021 10:43:44 +0800 Subject: [PATCH] Update Dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cfe7f2bc..467dd6f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,8 @@ RUN apk add --no-cache --virtual .build-deps ca-certificates curl \ && mkdir -m 777 /v2raybin \ && cd /v2raybin \ #&& curl -L -H "Cache-Control: no-cache" -o v2ray.zip https://github.com/v2ray/v2ray-core/releases/download/$VER/v2ray-linux-64.zip \ - && curl -L -H "Cache-Control: no-cache" -o v2ray.zip https://github.com/v2ray/v2ray-core/releases/latest/download/v2ray-linux-64.zip \ + && curl -L -H "Cache-Control: no-cache" -o v2ray.zip https://github.com/v2fly/v2ray-core/releases/tag/$VER/v2ray-linux-64.zip \ + https://github.com/v2fly/v2ray-core/releases/tag/v4.31.0 && unzip v2ray.zip \ && chmod +x /v2raybin/v2ray \ && rm -rf v2ray.zip \