Skip to content

Commit

Permalink
Fix network timeout for yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
iyannsch committed Jun 21, 2024
1 parent 5039451 commit a311818
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion images/c/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ COPY images/c/package.json .
# Remove unnecesarry files for the browser application
# Download plugins and build application production mode
# Use yarn autoclean to remove unnecessary files from package dependencies
RUN yarn --pure-lockfile && \
RUN yarn --pure-lockfile --network-timeout 1000000 && \
yarn download:plugins

# Assemble the application
Expand Down
2 changes: 1 addition & 1 deletion images/java-17/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ COPY images/java-17/package.json .
# Remove unnecesarry files for the browser application
# Download plugins and build application production mode
# Use yarn autoclean to remove unnecessary files from package dependencies
RUN yarn --pure-lockfile && \
RUN yarn --pure-lockfile --network-timeout 1000000 && \
yarn download:plugins

# Assemble the application
Expand Down
2 changes: 1 addition & 1 deletion images/ocaml/ToolDockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ COPY images/ocaml/package.json .
# Remove unnecesarry files for the browser application
# Download plugins and build application production mode
# Use yarn autoclean to remove unnecessary files from package dependencies
RUN yarn --pure-lockfile && \
RUN yarn --pure-lockfile --network-timeout 1000000 && \
yarn download:plugins

# Assemble the application
Expand Down

0 comments on commit a311818

Please sign in to comment.