This commit is contained in:
magdo
2025-11-25 00:14:58 +01:00
parent bf9503c7be
commit 4d2895664e
4 changed files with 80 additions and 2 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ WORKDIR /app
# Copy package files
COPY package.json package-lock.json* ./
# Install dependencies
RUN npm ci --only=production
# Install dependencies (including devDependencies needed for build)
RUN npm ci
# Copy source code
COPY . .