Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -26,6 +26,9 @@ RUN wget -q -O chitwan.onnx.json "https://huggingface.co/rhasspy/piper-voices/re
|
|
| 26 |
# Copy the FastAPI app into the container
|
| 27 |
COPY app.py /app/app.py
|
| 28 |
|
|
|
|
|
|
|
|
|
|
| 29 |
EXPOSE 7860
|
| 30 |
|
| 31 |
# Start the asynchronous Uvicorn server
|
|
|
|
| 26 |
# Copy the FastAPI app into the container
|
| 27 |
COPY app.py /app/app.py
|
| 28 |
|
| 29 |
+
# Add this line to copy your uploaded NeMo model into the container!
|
| 30 |
+
COPY model.nemo /app/model.nemo
|
| 31 |
+
|
| 32 |
EXPOSE 7860
|
| 33 |
|
| 34 |
# Start the asynchronous Uvicorn server
|