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:
rw
2026-03-20 10:08:51 +00:00
parent 2c354ad927
commit ef89519052

View File

@@ -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/