lobe-chat / Dockerfile
dongsiqie's picture
Update Dockerfile
c69f597
raw
history blame contribute delete
156 Bytes
FROM node:19
RUN git clone https://github.com/lobehub/lobe-chat.git
WORKDIR "lobe-chat"
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]