Fix Dockerfile to not copy non-existent package-lock.json file

This commit is contained in:
Ryderjj89
2025-09-29 17:56:04 -04:00
parent f52d2d53f6
commit 758f76c3c0

View File

@@ -12,8 +12,7 @@ RUN npm install --omit=dev
# Frontend build stage # Frontend build stage
FROM base AS frontend-build FROM base AS frontend-build
WORKDIR /app/frontend WORKDIR /app/frontend
COPY frontend/package*.json ./package.json COPY frontend/package.json ./package.json
COPY frontend/package-lock.json ./package-lock.json
COPY frontend/tsconfig.json ./tsconfig.json COPY frontend/tsconfig.json ./tsconfig.json
COPY frontend/tailwind.config.js ./tailwind.config.js COPY frontend/tailwind.config.js ./tailwind.config.js
COPY frontend/postcss.config.js ./postcss.config.js COPY frontend/postcss.config.js ./postcss.config.js