chartdb / Dockerfile
Subham9126's picture
Update Dockerfile
f202b8e verified
Raw
History Blame Contribute Delete
212 Bytes
# Use the correct GitHub Container Registry path
FROM ghcr.io/chartdb/chartdb:latest
# HF Spaces requires the app to listen on port 7860
ENV PORT 7860
EXPOSE 7860
# Command to start ChartDB
CMD ["npm", "start"]