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 6965335 commit 029503eCopy full SHA for 029503e
Dockerfile
@@ -15,9 +15,10 @@ COPY . .
15
# Install without scripts
16
RUN npm ci --omit=dev --ignore-scripts \
17
# Copy production node_modules aside for later
18
- && cp -R node_modules prod_node_modules \
19
- # Install all dependencies
20
- && npm ci \
+ && cp -R node_modules prod_node_modules
+
+# Install all dependencies
21
+RUN npm ci \
22
# Run build steps
23
&& npm run build
24
0 commit comments