Merge pull request #156 from makaveli10/fix_docker_image_gpu

Fix docker image gpu.
This commit is contained in:
Marcus Edel
2024-02-26 09:24:26 -05:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -77,7 +77,7 @@ jobs:
build-and-push-docker-cpu: build-and-push-docker-cpu:
needs: [run-tests, check-code-format] needs: [run-tests, check-code-format]
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -103,7 +103,7 @@ jobs:
needs: [run-tests, check-code-format, build-and-push-docker-cpu] needs: [run-tests, check-code-format, build-and-push-docker-cpu]
timeout-minutes: 20 timeout-minutes: 20
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
+1 -1
View File
@@ -30,4 +30,4 @@ COPY whisper_live /app/whisper_live
COPY run_server.py /app COPY run_server.py /app
CMD ["python", "run_server.py"] CMD ["python3", "run_server.py"]