Spaces:
Sleeping
Sleeping
created dockerfile
Browse files- 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"]
|