diff --git a/.github/workflows/build-v3.yml b/.github/workflows/build-v3.yml index fb0660a..2b3455a 100644 --- a/.github/workflows/build-v3.yml +++ b/.github/workflows/build-v3.yml @@ -9,8 +9,8 @@ on: - "master" paths: - ".github/workflows/build-v3.yml" - - "dev/v3/Dockerfile" - - "dev/v3/entrypoint.sh" + - "v3/Dockerfile" + - "v3/entrypoint.sh" jobs: build-v3: @@ -36,7 +36,7 @@ jobs: uses: docker/build-push-action@v6 with: context: . - file: ./dev/v3/Dockerfile + file: ./v3/Dockerfile push: true platforms: linux/amd64, linux/arm64, linux/s390x, linux/arm, linux/ppc64le, linux/riscv64 tags: ${{ secrets.DOCKERHUB_USERNAME }}/docker-warp-socks:v3 \ No newline at end of file diff --git a/dev/v3/Dockerfile b/v3/Dockerfile similarity index 92% rename from dev/v3/Dockerfile rename to v3/Dockerfile index ccc28ae..51b1c44 100644 --- a/dev/v3/Dockerfile +++ b/v3/Dockerfile @@ -17,7 +17,7 @@ RUN apk update && apk upgrade \ && apk add --no-cache curl openssl sing-box \ && rm -rf /var/cache/apk/* -COPY entrypoint-v3.sh /opt/entrypoint.sh -ENTRYPOINT ["/opt/entrypoint.sh"] +COPY v3/entrypoint.sh /run/entrypoint.sh +ENTRYPOINT ["/run/entrypoint.sh"] CMD ["rws-cli"] diff --git a/dev/v3/entrypoint.sh b/v3/entrypoint.sh similarity index 100% rename from dev/v3/entrypoint.sh rename to v3/entrypoint.sh