This commit is contained in:
Thomas Faour 2025-06-22 00:14:10 -04:00
parent 0268a4be06
commit 28581afe78

View File

@ -51,7 +51,7 @@ FROM node:18-alpine as frontend-builder
WORKDIR /app/web
# Copy package files for dependency caching
COPY web/package.json ./
COPY web/package.json web/package-lock.json ./
# Install dependencies
RUN npm ci