From ebdf1db4adb70fcfdb58bd0170c8732826eb95ec Mon Sep 17 00:00:00 2001 From: Timofey Gelazoniya Date: Sun, 29 Jun 2025 13:36:22 +0300 Subject: [PATCH] fix(build): docker context --- scripts/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index e2c9e48..0f5508d 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -46,7 +46,7 @@ docker login "${GITEA_REGISTRY}" # 2. Build the Docker image with the full name and tag. # We pass the root of the repo as the build context. echo "--> Building image: ${FULL_IMAGE_NAME}..." -docker build -t "${FULL_IMAGE_NAME}" . +docker build -t "${FULL_IMAGE_NAME}" -f ./docker/Dockerfile . # 3. Push the built image to the Gitea registry. echo "--> Pushing image to registry..."