Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -5
Dockerfile
CHANGED
@@ -1,7 +1,5 @@
|
|
|
|
1 |
FROM voicevox/voicevox_engine:cpu-latest
|
2 |
|
3 |
-
#
|
4 |
-
|
5 |
-
|
6 |
-
# Define the entrypoint to match the command
|
7 |
-
ENTRYPOINT ["/run.sh"]
|
|
|
1 |
+
# Use the official VOICEVOX Engine image
|
2 |
FROM voicevox/voicevox_engine:cpu-latest
|
3 |
|
4 |
+
# Start the FastAPI app on port 7860, the default port expected by Spaces
|
5 |
+
CMD ["--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
|
|