Skip to content

Commit 36e6907

Browse files
committed
add github actions ci
1 parent 3d19714 commit 36e6907

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

.github/workflows/build-imgs.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Docker Image CI (common)
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
paths:
7+
- "common/**"
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
# - name: Login to Docker Hub
14+
# uses: docker/login-action@v3
15+
# with:
16+
# username: ${{ vars.DOCKERHUB_USERNAME }}
17+
# password: ${{ secrets.DOCKERHUB_TOKEN }}
18+
- name: Set up Docker Buildx
19+
uses: docker/setup-buildx-action@v3
20+
- name: Build and push
21+
uses: docker/build-push-action@v6
22+
with:
23+
# push: true
24+
tags: "crgooeyprodwestus1.azurecr.io/gooey-gpu-common:latest"
25+
file: "common/Dockerfile"

common/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ accelerate ~= 0.20.3
77
celery ~= 5.3.0
88
pydantic ~= 1.10.9
99
redis ~= 4.5.5
10-
transformers ~= 4.44.0
10+
transformers ~= 4.46.3
1111

1212
## pytorch
1313
--extra-index-url https://download.pytorch.org/whl/cu124

scripts/run-dev.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ docker run \
3434
facebook/mms-1b-all
3535
"\
3636
-e WHISPER_MODEL_IDS="
37-
openai/whisper-large-v2
38-
vasista22/whisper-telugu-large-v2
39-
vasista22/whisper-hindi-large-v2
37+
dmatekenya/whisper-large-v3-chichewa
4038
" \
4139
-e SD_MODEL_IDS="
4240
stabilityai/stable-diffusion-2-inpainting

0 commit comments

Comments
 (0)