diff --git a/adminfront/Dockerfile b/adminfront/Dockerfile index bcacff16..5e53df7b 100644 --- a/adminfront/Dockerfile +++ b/adminfront/Dockerfile @@ -10,7 +10,7 @@ COPY common ./common COPY adminfront ./adminfront # Install dependencies for the workspace -RUN cd common && pnpm install +RUN cd common && CI=true pnpm install # 프로덕션 서빙을 위한 serve 패키지 글로벌 설치 RUN npm install -g serve diff --git a/adminfront/scripts/runtime-mode.sh b/adminfront/scripts/runtime-mode.sh index 3a5ddadd..7442bef7 100644 --- a/adminfront/scripts/runtime-mode.sh +++ b/adminfront/scripts/runtime-mode.sh @@ -61,7 +61,7 @@ ensure_frontend_dependencies() { echo "Installing frontend dependencies..." if [ "$WORKSPACE_DIR" = "/common" ]; then npm install -g pnpm - (cd /common && pnpm install) + (cd /common && CI=true pnpm install) else npm ci fi diff --git a/devfront/Dockerfile b/devfront/Dockerfile index 76e1bea8..9055e694 100644 --- a/devfront/Dockerfile +++ b/devfront/Dockerfile @@ -10,7 +10,7 @@ COPY common ./common COPY devfront ./devfront # Install dependencies for the workspace -RUN cd common && pnpm install +RUN cd common && CI=true pnpm install # 프로덕션 서빙을 위한 serve 패키지 글로벌 설치 RUN npm install -g serve diff --git a/devfront/scripts/runtime-mode.sh b/devfront/scripts/runtime-mode.sh index ada440ef..3a1e588b 100644 --- a/devfront/scripts/runtime-mode.sh +++ b/devfront/scripts/runtime-mode.sh @@ -61,7 +61,7 @@ ensure_frontend_dependencies() { echo "Installing frontend dependencies..." if [ "$WORKSPACE_DIR" = "/common" ]; then npm install -g pnpm - (cd /common && pnpm install) + (cd /common && CI=true pnpm install) else npm ci fi diff --git a/orgfront/Dockerfile b/orgfront/Dockerfile index 65f33870..64368784 100644 --- a/orgfront/Dockerfile +++ b/orgfront/Dockerfile @@ -10,7 +10,7 @@ COPY common ./common COPY orgfront ./orgfront # Install dependencies for the workspace -RUN cd common && pnpm install +RUN cd common && CI=true pnpm install # 프로덕션 서빙을 위한 serve 패키지 글로벌 설치 RUN npm install -g serve diff --git a/orgfront/scripts/runtime-mode.sh b/orgfront/scripts/runtime-mode.sh index 3ce80ca1..fc24f54d 100644 --- a/orgfront/scripts/runtime-mode.sh +++ b/orgfront/scripts/runtime-mode.sh @@ -61,7 +61,7 @@ ensure_frontend_dependencies() { echo "Installing frontend dependencies..." if [ "$WORKSPACE_DIR" = "/common" ]; then npm install -g pnpm - (cd /common && pnpm install) + (cd /common && CI=true pnpm install) else npm ci fi