Skip to content

Commit 38611a0

Browse files
committed
Fix copying package.json
1 parent fa947c1 commit 38611a0

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

frontend/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ RUN npm ci --omit=dev
77

88
FROM base AS builder
99
COPY --from=deps /app/node_modules ./node_modules
10+
COPY package.json package-lock.json* ./
1011
COPY tsconfig.json next.config.ts ./
1112
COPY public ./public
1213
COPY src ./src

frontend/Dockerfile.dev

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ RUN npm ci
77

88
FROM base AS builder
99
COPY --from=deps /app/node_modules ./node_modules
10+
COPY package.json package-lock.json* ./
1011
COPY tsconfig.json next.config.ts ./
1112
COPY public ./public
1213
COPY src ./src

0 commit comments

Comments
 (0)