Spaces:
Sleeping
Sleeping
fix
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -10,6 +10,8 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
|
12 |
COPY --chown=user . /app
|
|
|
|
|
13 |
CMD python3 interface.py & \
|
14 |
uvicorn main:app --host 0.0.0.0 --port 8000 & \
|
15 |
uvicorn tts.tts:app --host 0.0.0.0 --port 8001
|
|
|
10 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
11 |
|
12 |
COPY --chown=user . /app
|
13 |
+
|
14 |
+
EXPOSE 7826 8000 8001
|
15 |
CMD python3 interface.py & \
|
16 |
uvicorn main:app --host 0.0.0.0 --port 8000 & \
|
17 |
uvicorn tts.tts:app --host 0.0.0.0 --port 8001
|