first commit
Some checks failed
Deploy Application / deploy (push) Has been cancelled

This commit is contained in:
2025-06-11 21:15:10 +04:00
parent f351bdf200
commit efade5429b

View File

@ -6,8 +6,10 @@ WORKDIR /app
# Copy package files # Copy package files
COPY package.json yarn.lock ./ COPY package.json yarn.lock ./
# Install dependencies # Install dependencies with increased timeout and retry settings
RUN yarn install --frozen-lockfile RUN yarn config set network-timeout 300000 && \
yarn config set network-concurrency 1 && \
yarn install --frozen-lockfile --network-timeout 300000
# Copy source code # Copy source code
COPY . . COPY . .