We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6588830 commit 57f51a5Copy full SHA for 57f51a5
Dockerfile
@@ -8,8 +8,8 @@ WORKDIR /app
8
COPY package*.json ./
9
COPY tsconfig.json ./
10
11
-# Install dependencies
12
-RUN npm ci --only=production && npm cache clean --force
+# Install all dependencies (including devDependencies for building)
+RUN npm ci && npm cache clean --force
13
14
# Copy source code
15
COPY src/ ./src/
0 commit comments