Kshitijk20 commited on
Commit
bae0bf9
·
verified ·
1 Parent(s): 78f75a4

created dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/remsky/kokoro-fastapi-cpu:v0.2.2
2
+
3
+ # Expose the port that the FastAPI app runs on
4
+ EXPOSE 8880
5
+
6
+ # Command to run the application
7
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8880"]