fix(docker): Add build context to app-dev service in docker-compose.yaml

Fix invalid docker-compose configuration by adding missing build context properties to app-dev service.

This PR resolves the following error:
"ERROR: The Compose file is invalid because: Service app-dev has neither an image nor a build context specified. At least one must be provided."

Changes:
- Added build.context and build.dockerfile properties to app-dev service
- Aligned build configuration with existing app-prod service structure
This commit is contained in:
MenaYassa 2025-01-18 21:47:42 +02:00 committed by GitHub
parent e19644268c
commit 524865dda9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,6 +36,8 @@ services:
app-dev:
image: bolt-ai:development
build:
context: .
dockerfile: Dockerfile
target: bolt-ai-development
environment:
- NODE_ENV=development