chatbot-ui-bing / Dockerfile
hf4all
Update Dockerfile
4c1745f
raw
history blame
186 Bytes
FROM node:18
RUN git clone https://github.com/mckaywrigley/chatbot-ui
WORKDIR "chatbot-ui"
RUN npm i
RUN npm run build
ENV PORT 3000
ENV OPENAI_API_KEY dummy
CMD ["npm", "run", "start"]