yjs-backend/Dockerfile
Круглицкий Никита Витальевич 13d7612b8e
All checks were successful
Deploy / build (push) Successful in 53s
deploy
2025-11-20 21:37:34 +06:00

13 lines
228 B
Docker

FROM node:22-alpine AS build
WORKDIR /app
RUN corepack enable
COPY package.json yarn.lock ./
RUN ls -la
RUN yarn config set nodeLinker node-modules
RUN yarn install
COPY . .
RUN ls -la
EXPOSE 80
CMD ["PORT=80 npx y-websocket"]