From 5f5ddc01866cef55304f683ad35e85cd7779d112 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:47:51 +0600 Subject: [PATCH] #2 #3 update --- client/Dockerfile | 2 +- server/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/Dockerfile b/client/Dockerfile index 68b086e..53c5c37 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -5,7 +5,7 @@ WORKDIR /app RUN corepack enable RUN yarn set version stable -COPY package.json yarn.lock ./ +COPY package.json yarn.lock .yarnrc.yml ./ RUN yarn install COPY . . diff --git a/server/Dockerfile b/server/Dockerfile index 7f21cfa..1b8f3a0 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -1,7 +1,7 @@ FROM node:22 WORKDIR /app RUN corepack enable -COPY package.json yarn.lock ./ +COPY package.json yarn.lock .yarnrc.yml ./ RUN apt update && apt install --yes python3 python3-pip build-essential RUN yarn set version latest RUN yarn install --frozen-lockfile