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.

This commit is contained in:
kony
2026-03-31 10:50:20 +08:00
parent 56d292ac21
commit 4e329cabd7
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -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 \
+2 -1
View File
@@ -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 .