Skip to content

Commit 13467db

Browse files
committed
fix(build): fix app dir location
1 parent 5653c68 commit 13467db

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

backend/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ set -e
1313
# - DOCKER_PASS: Docker Hub password
1414

1515
# Navigate to app directory
16-
cd ../app
16+
cd ../../app
1717

1818
# Build Docker image with commit SHA + environment tag
1919
docker build -t ghcr.io/${OWNER_NAME,,}/${REPO_NAME,,}:${COMMIT_TAG}-${ENV_TAG} . > /dev/null 2>&1

cross-platform/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88
# - MOVING_TAG: Moving tag (latest/dev)
99

1010
# Navigate to app directory
11-
cd ../app
11+
cd ../../app
1212

1313
# Install Flutter if not present
1414
if ! command -v flutter &> /dev/null; then

frontend/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set -e
1414
# - NEXT_PUBLIC_* variables for build args
1515

1616
# Navigate to app directory
17-
cd ../app
17+
cd ../../app
1818

1919
# Build Docker image with frontend-specific build arguments
2020
BUILD_ARGS=(

0 commit comments

Comments
 (0)