fix(ci): use --ignore-scripts for pnpm install
Build & Push Portfolio Image / build-push (push) Successful in 3m21s

This commit is contained in:
Story Crater Bot
2026-08-31 17:40:13 -07:00
parent e296508797
commit c4a92d17e9
2 changed files with 3 additions and 9 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ COPY package.json pnpm-lock.yaml ./
# Install pnpm
RUN npm install -g pnpm
# Install dependencies
RUN pnpm install --frozen-lockfile
# Install dependencies (skip build scripts - sharp will use wasm fallback)
RUN pnpm install --frozen-lockfile --ignore-scripts
# Copy source
COPY . .
-6
View File
@@ -30,11 +30,5 @@
"eslint-config-next": "^16.2.10",
"postcss": "^8.4.32",
"typescript": "5.8.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp",
"unrs-resolver"
]
}
}