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"]