Skip to content

Commit a6166af

Browse files
committed
fix: Use backend/Dockerfile.backend instead of Dockerfile.codeengine
- Workflow was using Dockerfile.codeengine which has poetry install - poetry install pulls CUDA PyTorch from poetry.lock (~6-8GB) - backend/Dockerfile.backend has custom pip install for CPU-only PyTorch - Also has email-validator fix for pydantic[email] syntax This should resolve both CUDA libraries and email-validator issues.
1 parent 9a1c8cb commit a6166af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/deploy_complete_app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ jobs:
307307
uses: docker/build-push-action@v6
308308
with:
309309
context: .
310-
file: ./Dockerfile.codeengine
310+
file: ./backend/Dockerfile.backend
311311
platforms: linux/amd64
312312
push: true
313313
# Versioning strategy:

0 commit comments

Comments
 (0)