mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
fix(storybook): remove package-lock.json from Dockerfile COPY
package-lock.json is gitignored (**/package-lock.json) so it never exists in the build context. npm install on line 41 handles deps fine. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
FROM node:24-alpine AS deps
|
FROM node:24-alpine AS deps
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY package.json package-lock.json .npmrc ./
|
COPY package.json .npmrc ./
|
||||||
|
|
||||||
# Workspace package.json files
|
# Workspace package.json files
|
||||||
COPY types/package.json ./types/
|
COPY types/package.json ./types/
|
||||||
|
|||||||
Reference in New Issue
Block a user