We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 877a4c2 commit d48e03eCopy full SHA for d48e03e
1 file changed
.github/workflows/docker-image.yml
@@ -0,0 +1,19 @@
1
+name: Docker Image CI
2
+on:
3
+ push:
4
+ branches: [ "main" ]
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+ - name: Log in to GitHub Container Registry
11
+ uses: docker/login-action@v3
12
+ with:
13
+ registry: ghcr.io
14
+ username: ${{ github.actor }}
15
+ password: ${{ secrets.GITHUB_TOKEN }}
16
+ - name: Build and push Docker image
17
+ run: |
18
+ docker build . --file Dockerfile --tag ghcr.io/virtuos/whisperx-api:latest
19
+ docker push ghcr.io/virtuos/whisperx-api:latest
0 commit comments