Spaces:
Paused
Paused
| FROM node:latest | |
| WORKDIR /code | |
| COPY ./package.json /code/package.json | |
| RUN git clone https://github.com/letrieu/cloudflare-chatbot | |
| RUN cd cloudflare-chatbot && npm install && npm run preview | |
| COPY . . | |
| ENV PORT 7860 | |
| CMD ["node", "app.js"] |