File size: 132 Bytes
ef3d732
e5764a5
 
 
b058963
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM node:21



WORKDIR /app
COPY . .
RUN npm install express proxy-agent socket.io-client uuid
EXPOSE 8081
CMD [ "node", "app.js" ]