From 514849a3bb1caa7d4dc71d5454e8dd211ef4c757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=9A=D1=80=D1=83?= =?UTF-8?q?=D0=B3=D0=BB=D0=B8=D1=86=D0=BA=D0=B8=D0=B9?= Date: Wed, 1 Oct 2025 21:37:25 +0600 Subject: [PATCH] #3 update --- client/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 0a3d9d7..6ad37ff 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -2,9 +2,12 @@ FROM node:lts-alpine AS builder WORKDIR /app +RUN corepack enable +RUN yarn set version latest + COPY package.json yarn.lock ./ -RUN yarn install --frozen-lockfile +RUN yarn install COPY . . RUN yarn build