Skip to content

Commit

Permalink
Merge pull request #217 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 5c39131 + ef9c159 commit c039f63
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker-push-audiovec-worker-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/audiovec/Dockerfile.audio_worker
platforms: linux/amd64
build-args: UID=1000, GID=1000
push: true
tags: tattletech/feluda-operator-audiovec:worker-amd64-latest

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

Expand All @@ -36,5 +37,6 @@ jobs:
context: "{{defaultContext}}:src/"
file: worker/hash/Dockerfile.hash_worker_graviton
platforms: linux/arm64
build-args: UID=1000, GID=1000
push: true
tags: tattletech/feluda-operator-hash:worker-arm64-latest
2 changes: 2 additions & 0 deletions .github/workflows/docker-push-vidvec-benchmark-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
context: "{{defaultContext}}:src/"
file: benchmark/vidvec/Dockerfile.vid_vec_rep_resnet
platforms: linux/amd64
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 @@ -46,6 +47,7 @@ jobs:
context: "{{defaultContext}}:src/"
file: benchmark/vidvec/Dockerfile.vid_vec_rep_resnet_graviton
platforms: linux/arm64
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
2 changes: 2 additions & 0 deletions .github/workflows/docker-push-vidvec-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
context: "{{defaultContext}}:src/"
file: benchmark/vidvec/Dockerfile.vid_vec_rep_resnet
platforms: linux/amd64
build-args: UID=1000, GID=1000
push: true
tags: tattletech/feluda-operator-vidvec:benchmark-amd64-latest

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

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

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

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

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

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

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

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

Expand Down

0 comments on commit c039f63

Please sign in to comment.