chat / Dockerfile
1tbfree's picture
Update Dockerfile
c61425f verified
raw
history blame contribute delete
55 Bytes
FROM node:20
COPY . .
RUN npm i
CMD ["node", "chat.js"]