Philips656 commited on
Commit
ce9c146
·
verified ·
1 Parent(s): 44a51a3

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM calciumion/new-api:latest
2
+
3
+ # Hugging Face requires port 7860
4
+ ENV PORT=7860
5
+ EXPOSE 7860
6
+
7
+ # The executable in this image is named new-api
8
+ ENTRYPOINT ["/new-api"]