Fix Docker build: replace workspace:* with file: references

npm doesn't support the `workspace:*` protocol (that's pnpm/Yarn).
This caused `npm install` to fail with EUNSUPPORTEDPROTOCOL during
Docker builds. Replaced both occurrences with `file:` relative paths
that npm workspaces resolves correctly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Khalid A
2026-04-17 16:17:58 -05:00
parent 4ee4cb8e7c
commit 875f377194
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@
"react": "^19.1.0",
"react-dom": "^19.1.0",
"zod": "^3.24.0",
"@dynamic-sites/shared": "workspace:*"
"@dynamic-sites/shared": "file:shared"
},
"devDependencies": {
"@types/react": "^19.1.2",