Decrease network timeout

This commit is contained in:
Alicia Sykes 2024-03-03 17:18:35 +00:00
parent e290451040
commit 47762390d4
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ WORKDIR /app
# Install app dependencies
COPY package.json yarn.lock ./
RUN yarn install --ignore-engines --frozen-lockfile --network-timeout 1000000
RUN yarn install --ignore-engines --frozen-lockfile --network-timeout 600000
# Copy over all project files and folders to the working directory
COPY . ./

View File

@ -11,7 +11,7 @@
"lint": "vue-cli-service lint",
"pm2-start": "npx pm2 start server.js",
"build-watch": "vue-cli-service build --watch --mode production",
"build-and-start": "npm-run-all --parallel build-watch start",
"build-and-start": "NODE_OPTIONS=--openssl-legacy-provider npm-run-all --parallel build-watch start",
"validate-config": "node services/config-validator",
"health-check": "node services/healthcheck",
"dependency-audit": "npx improved-yarn-audit --ignore-dev-deps"