Update Dockerfile

fix yarn to package-lock.json ./
This commit is contained in:
santiyago 2025-06-05 00:43:32 +03:30 committed by GitHub
parent 2f4046fb08
commit c52b8b7ee9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ FROM node:20-alpine AS builder
WORKDIR /app
COPY package.json yarn.lock ./
COPY package.json package-lock.json ./
RUN corepack enable
RUN yarn install --frozen-lockfile --network-timeout 600000