#2 #3 update
Some checks failed
Deploy / server (push) Successful in 3m50s
Deploy / client (push) Failing after 49s

This commit is contained in:
Никита Круглицкий 2025-10-01 21:47:51 +06:00
parent 3b7d5f7934
commit 5f5ddc0186
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ WORKDIR /app
RUN corepack enable RUN corepack enable
RUN yarn set version stable RUN yarn set version stable
COPY package.json yarn.lock ./ COPY package.json yarn.lock .yarnrc.yml ./
RUN yarn install RUN yarn install
COPY . . COPY . .

View File

@ -1,7 +1,7 @@
FROM node:22 FROM node:22
WORKDIR /app WORKDIR /app
RUN corepack enable 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 apt update && apt install --yes python3 python3-pip build-essential
RUN yarn set version latest RUN yarn set version latest
RUN yarn install --frozen-lockfile RUN yarn install --frozen-lockfile