From 853423608c884f38fedbf6cf66672528f29dce45 Mon Sep 17 00:00:00 2001 From: Akshat Jain Date: Wed, 9 Jul 2025 16:00:16 +0530 Subject: [PATCH] [INFRA-206] fix: update build context and dockerfile paths in build.yml in deploy/selfhost (#7368) * chore: update build context and dockerfile paths in build.yml for self-hosted deployment * fix: build context --------- Co-authored-by: sriramveeraghanta --- deploy/selfhost/build.yml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/deploy/selfhost/build.yml b/deploy/selfhost/build.yml index aa5306fb4..4a9d3d11a 100644 --- a/deploy/selfhost/build.yml +++ b/deploy/selfhost/build.yml @@ -2,29 +2,35 @@ services: web: image: ${DOCKERHUB_USER:-local}/plane-frontend:${APP_RELEASE:-latest} build: - context: . - dockerfile: ./web/Dockerfile.web + context: ../../ + dockerfile: apps/web/Dockerfile.web space: image: ${DOCKERHUB_USER:-local}/plane-space:${APP_RELEASE:-latest} build: - context: ./ - dockerfile: ./space/Dockerfile.space + context: ../../ + dockerfile: apps/space/Dockerfile.space admin: image: ${DOCKERHUB_USER:-local}/plane-admin:${APP_RELEASE:-latest} build: - context: ./ - dockerfile: ./admin/Dockerfile.admin + context: ../../ + dockerfile: apps/admin/Dockerfile.admin + + live: + image: ${DOCKERHUB_USER:-local}/plane-live:${APP_RELEASE:-latest} + build: + context: ../../ + dockerfile: apps/live/Dockerfile.live api: image: ${DOCKERHUB_USER:-local}/plane-backend:${APP_RELEASE:-latest} build: - context: ./apps/server - dockerfile: ./Dockerfile.api + context: ../../apps/api + dockerfile: Dockerfile.api proxy: image: ${DOCKERHUB_USER:-local}/plane-proxy:${APP_RELEASE:-latest} build: - context: ./nginx - dockerfile: ./Dockerfile + context: ../../nginx + dockerfile: Dockerfile