From 524865dda93f09c291f421f12933bf3427914b4f Mon Sep 17 00:00:00 2001 From: MenaYassa Date: Sat, 18 Jan 2025 21:47:42 +0200 Subject: [PATCH] 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 --- docker-compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index 9c28c6470..fbe7386ae 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -36,6 +36,8 @@ services: app-dev: image: bolt-ai:development build: + context: . + dockerfile: Dockerfile target: bolt-ai-development environment: - NODE_ENV=development