NChat / Dockerfile
blfm's picture
Update Dockerfile
7d5006a verified
raw
history blame contribute delete
164 Bytes
FROM node:20
RUN git clone https://github.com/tianzhentech/NeatChat
WORKDIR "NeatChat"
COPY . .
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]