Files
windmill/docker/DockerfileMultiplayer
2023-05-30 21:05:59 +02:00

9 lines
119 B
Plaintext

FROM node:slim
EXPOSE 3002
ENV PORT 3002
ENV HOST 0.0.0.0
RUN npm install -g y-websocket
CMD ["npx", "y-websocket"]