From 4e329cabd7b79c352e2453722d5cc26ebd124a29 Mon Sep 17 00:00:00 2001 From: kony <2312708932@qq.com> Date: Tue, 31 Mar 2026 10:50:20 +0800 Subject: [PATCH] Update build.sh and Dockerfile to include goodlink3 in the build process. This change ensures that goodlink3 is copied to the appropriate directories during the build and Docker image creation. --- Dockerfile | 1 + build.sh | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8db7ebd..78b1271 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,7 @@ RUN echo 111111111111 COPY go2 /go/src/go2 COPY proxy2 /go/src/proxy COPY goroutine-pool /go/src/goroutine-pool +COPY goodlink3 /go/src/goodlink3 RUN --mount=target=. \ --mount=type=cache,target=/root/.cache/go-build \ diff --git a/build.sh b/build.sh index 3a593af..7e284d7 100755 --- a/build.sh +++ b/build.sh @@ -4,10 +4,11 @@ go install github.com/akavel/rsrc@latest set -x -rm -rf go2 proxy2 goroutine-pool +rm -rf go2 proxy2 goroutine-pool goodlink3 cp -r ../go2 . cp -r ../proxy proxy2 cp -r ../goroutine-pool . +cp -r ../goodlink3 . if [ -e "/usr/bin/upx" ]; then cp /usr/bin/upx .