Fix frontend Dockerfile COPY destination for multi-source glob
YesChef/pipeline/head There was a failure building this commit

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Josh Rogers
2026-05-15 23:52:43 -05:00
parent 0e59fd5bad
commit c7ba88f447
+1 -1
View File
@@ -1,6 +1,6 @@
FROM node:22-slim AS build
WORKDIR /app
COPY package*.json .
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build