chatbot-ui-bing / Dockerfile
hf4all
Update Dockerfile
83b074d
raw
history blame
149 Bytes
FROM node:18
RUN https://github.com/mckaywrigley/chatbot-ui
WORKDIR "chatbot-ui"
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]