add Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -1,3 +1,6 @@
|
|
| 1 |
FROM ghcr.io/dbccccccc/ttsfm:latest
|
| 2 |
# Expose port
|
| 3 |
EXPOSE 8000
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
FROM ghcr.io/dbccccccc/ttsfm:latest
|
| 2 |
# Expose port
|
| 3 |
EXPOSE 8000
|
| 4 |
+
|
| 5 |
+
WORKDIR /app/ttsfm-web
|
| 6 |
+
CMD ["python", "-m", "waitress", "--host=0.0.0.0", "--port=8000", "app:app"]
|