fc-speech-align: bump to v2 with explicit requests dep (faster-whisper 1.0.3 missing transitive)

This commit is contained in:
Andrew Stoltz
2026-04-25 10:55:51 -05:00
parent df115e4d1e
commit d7628a6945
2 changed files with 5 additions and 1 deletions

View File

@@ -155,7 +155,7 @@ spec:
runAsUser: 1654 runAsUser: 1654
containers: containers:
- name: align - name: align
image: localhost/fc-speech-align:v1 image: localhost/fc-speech-align:v2
imagePullPolicy: Never imagePullPolicy: Never
ports: ports:
- containerPort: 9200 - containerPort: 9200

View File

@@ -2,3 +2,7 @@ faster-whisper==1.0.3
fastapi==0.115.0 fastapi==0.115.0
uvicorn[standard]==0.30.6 uvicorn[standard]==0.30.6
python-multipart==0.0.10 python-multipart==0.0.10
# faster-whisper 1.0.3's utils module imports requests but doesn't pin it as a
# transitive dep — pin explicitly so the image isn't relying on whatever
# happens to be in the base image.
requests==2.32.3