deploy
All checks were successful
Deploy / build (push) Successful in 32s

This commit is contained in:
Круглицкий Никита Витальевич 2025-11-20 21:32:27 +06:00
parent d8c995984a
commit b75fccca0a

View File

@ -1,7 +1,10 @@
FROM node:22-alpine AS build FROM node:22-alpine AS build
WORKDIR /app
RUN corepack enable RUN corepack enable
COPY package.json yarn.lock ./ COPY package.json yarn.lock ./
RUN ls -la
RUN yarn install RUN yarn install
COPY . .
EXPOSE 80 EXPOSE 80
CMD ["HOST=api.koptilnya.xyz/bpmn PORT=80 npx y-websocket"] CMD ["HOST=api.koptilnya.xyz/bpmn PORT=80 npx y-websocket"]