chat-viewer / Dockerfile
josephrw's picture
Upload Dockerfile with huggingface_hub
9670b58 verified
Raw
History Blame Contribute Delete
137 Bytes
FROM node:20-slim
WORKDIR /app
COPY server.js .
COPY index.html .
COPY conversations-*.json ./
EXPOSE 7860
CMD ["node", "server.js"]