#3 update
Some checks failed
Deploy / server (push) Successful in 18s
Deploy / client (push) Failing after 53s

This commit is contained in:
Никита Круглицкий 2025-10-01 21:37:25 +06:00
parent c0898d0df2
commit 514849a3bb

View File

@ -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