Skip to content

Commit 54ad0fa

Browse files
YedPoolclaude
andcommitted
Force clean builds for all containers with --no-cache
- Add --no-cache to all Docker builds to prevent cached failures - Ensure fresh builds for cerebrium, token-server, whisper-stt, sesame-tts - Should resolve LiveKit binary download issues across all containers 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 9a51184 commit 54ad0fa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test-docker.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Build Docker image
3333
run: |
3434
cd cerebrium
35-
docker build -t gmail-voice-assistant:test .
35+
docker build --progress=plain --no-cache -t gmail-voice-assistant:test .
3636
3737
- name: Test container startup
3838
run: |
@@ -210,7 +210,7 @@ jobs:
210210
- name: Build Token Server Docker image
211211
run: |
212212
cd livekit-token-server
213-
docker build --progress=plain -t livekit-token-server:test .
213+
docker build --progress=plain --no-cache -t livekit-token-server:test .
214214
215215
- name: Test Token Server container startup
216216
run: |
@@ -314,12 +314,12 @@ jobs:
314314
- name: Build Whisper STT Docker image
315315
run: |
316316
cd whisper-stt
317-
docker build --progress=plain -t whisper-stt:test .
317+
docker build --progress=plain --no-cache -t whisper-stt:test .
318318
319319
- name: Build Sesame TTS Docker image
320320
run: |
321321
cd sesame-tts
322-
docker build --progress=plain -t sesame-tts:test .
322+
docker build --progress=plain --no-cache -t sesame-tts:test .
323323
324324
- name: Test Whisper STT container startup
325325
run: |

0 commit comments

Comments
 (0)