Spaces:
Paused
Paused
File size: 242 Bytes
7e1cafb fcf29a9 7e1cafb 6d0f7ec b2edc98 34a7b18 7e1cafb 2209a31 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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"] |