From 3a2682aaffd921a555cb8e22d2236f4e79d283da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9A=D1=80=D1=83=D0=B3=D0=BB=D0=B8=D1=86=D0=BA=D0=B8?= =?UTF-8?q?=D0=B9=20=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=92=D0=B8?= =?UTF-8?q?=D1=82=D0=B0=D0=BB=D1=8C=D0=B5=D0=B2=D0=B8=D1=87?= Date: Thu, 20 Nov 2025 21:42:26 +0600 Subject: [PATCH] deploy --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b7cd85d..ee56069 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,10 @@ 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 ENV PORT=80 -CMD ["npx y-websocket"] +CMD ["npx", "y-websocket"]