Subham9126 commited on
Commit
f202b8e
·
verified ·
1 Parent(s): 80d8274

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -1,9 +1,9 @@
1
- # Use the official ChartDB image
2
- FROM chartdb/chartdb:latest
3
 
4
- # Hugging Face Spaces uses port 7860 by default
5
  ENV PORT 7860
6
  EXPOSE 7860
7
 
8
- # Start the application
9
  CMD ["npm", "start"]
 
1
+ # Use the correct GitHub Container Registry path
2
+ FROM ghcr.io/chartdb/chartdb:latest
3
 
4
+ # HF Spaces requires the app to listen on port 7860
5
  ENV PORT 7860
6
  EXPOSE 7860
7
 
8
+ # Command to start ChartDB
9
  CMD ["npm", "start"]