Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
-
# Use the
|
| 2 |
-
FROM chartdb/chartdb:latest
|
| 3 |
|
| 4 |
-
#
|
| 5 |
ENV PORT 7860
|
| 6 |
EXPOSE 7860
|
| 7 |
|
| 8 |
-
#
|
| 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"]
|