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 7302165 commit 2fcee02Copy full SHA for 2fcee02
Dockerfile
@@ -11,7 +11,7 @@ WORKDIR /app
11
12
COPY package*.json ./
13
14
-RUN npm install --no-install-recommends
+RUN npm install --no-install-recommends --fetch-retry-maxtimeout 300000
15
16
COPY . .
17
@@ -22,9 +22,9 @@ WORKDIR /app
22
23
COPY --from=build /app/package*.json ./
24
25
-RUN npm install --no-install-recommends --only=production
+RUN npm install --no-install-recommends --only=production --fetch-retry-maxtimeout 300000
26
27
-COPY --from=build /app/.env .env
+# COPY --from=build /app/.env .env
28
COPY --from=build /app/config.js ./config.js
29
COPY --from=build /app/server ./server
30
COPY --from=build /app/app/dist /app
0 commit comments