🏗 Restricts network concurency to 1 thread, and adds verbose logging to installation command

This commit is contained in:
Alicia Sykes 2024-03-03 20:51:35 +00:00
parent 5600d26d5e
commit 70651b75f7
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ WORKDIR /app
# Install app dependencies
COPY package.json yarn.lock ./
RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 600000
RUN yarn install --ignore-engines --immutable --no-cache --network-timeout 300000 --network-concurrency 1 --verbose
# Copy over all project files and folders to the working directory
COPY . ./