Skip to content

Commit

Permalink
check if dual subdir can work
Browse files Browse the repository at this point in the history
  • Loading branch information
Mon-ius committed Sep 8, 2024
1 parent b3b6174 commit d40b3c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
4 changes: 2 additions & 2 deletions dev/v3/Dockerfile → v3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
File renamed without changes.

0 comments on commit d40b3c4

Please sign in to comment.