This commit is contained in:
Kar
2026-02-25 13:15:52 +05:30
parent f2a0df0a8c
commit 78eb1d25a7
2 changed files with 6 additions and 8 deletions

View File

@@ -10,8 +10,8 @@ WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Install all dependencies (including TypeScript for config transpilation)
RUN npm ci
# Copy application code
COPY . .