request-traffic / Dockerfile
Zhofang's picture
Update Dockerfile
34a7b18 verified
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"]