pplx / Dockerfile
Clarzis's picture
Rename Dockfile to Dockerfile
57d675e verified
raw
history blame contribute delete
129 Bytes
FROM node:21
WORKDIR /app
COPY . .
RUN npm install express proxy-agent socket.io-client uuid
EXPOSE 8081
CMD [ "node", "app.js" ]