Skip to content

Commit

Permalink
Merge pull request #219 from tattle-made/hotfix
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
duggalsu authored Mar 18, 2024
2 parents 3a14e00 + fe1adfd commit 4b4a3ff
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 17 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-push-audiovec-worker-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/audiovec/Dockerfile.audio_worker
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-audiovec:worker-amd64-latest

Expand All @@ -37,6 +39,8 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/audiovec/Dockerfile.audio_worker_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-audiovec:worker-arm64-latest
8 changes: 6 additions & 2 deletions .github/workflows/docker-push-hash-worker-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/hash/Dockerfile.hash_worker
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-hash:worker-amd64-latest

Expand All @@ -37,6 +39,8 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/hash/Dockerfile.hash_worker_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-hash:worker-arm64-latest
8 changes: 6 additions & 2 deletions .github/workflows/docker-push-vidvec-benchmark-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: benchmark/vidvec/Dockerfile.vid_vec_rep_resnet
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:benchmark-amd64-latest-test
cache-from: type=local,src=/tmp/.buildx-cache
Expand All @@ -47,7 +49,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: benchmark/vidvec/Dockerfile.vid_vec_rep_resnet_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:benchmark-arm64-latest-test
cache-from: type=local,src=/tmp/.buildx-cache
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/docker-push-vidvec-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: benchmark/vidvec/Dockerfile.vid_vec_rep_resnet
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:benchmark-amd64-latest

Expand All @@ -37,6 +39,8 @@ jobs:
context: "{{defaultContext}}:src/"
file: benchmark/vidvec/Dockerfile.vid_vec_rep_resnet_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:benchmark-arm64-latest
8 changes: 6 additions & 2 deletions .github/workflows/docker-push-vidvec-worker-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/vidvec/Dockerfile.video_worker
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:worker-amd64-latest

Expand All @@ -37,6 +39,8 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/vidvec/Dockerfile.video_worker_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:worker-arm64-latest
24 changes: 18 additions & 6 deletions .github/workflows/merge-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/vidvec/Dockerfile.video_worker
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:worker-amd64-${{ needs.release.outputs.tag }}

Expand All @@ -72,7 +74,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/vidvec/Dockerfile.video_worker_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-vidvec:worker-arm64-${{ needs.release.outputs.tag }}

Expand All @@ -82,7 +86,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/audiovec/Dockerfile.audio_worker
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-audiovec:worker-amd64-${{ needs.release.outputs.tag }}

Expand All @@ -92,7 +98,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/audiovec/Dockerfile.audio_worker_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-audiovec:worker-arm64-${{ needs.release.outputs.tag }}

Expand All @@ -102,7 +110,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/hash/Dockerfile.hash_worker
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-hash:worker-amd64-${{ needs.release.outputs.tag }}

Expand All @@ -112,7 +122,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/hash/Dockerfile.hash_worker_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-operator-hash:worker-arm64-${{ needs.release.outputs.tag }}

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/prod-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ jobs:
context: "{{defaultContext}}:src/"
file: Dockerfile
platforms: linux/amd64
build-args: UID=1000, GID=1000
build-args: |
"UID=1000"
"GID=1000"
push: true
tags: tattletech/feluda-server:${{ steps.vars.outputs.sha_short }}

Expand Down

0 comments on commit 4b4a3ff

Please sign in to comment.