Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -6,6 +6,8 @@ COPY . .
|
|
| 6 |
|
| 7 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
| 8 |
|
|
|
|
|
|
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
|
| 11 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 6 |
|
| 7 |
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
|
| 8 |
|
| 9 |
+
RUN pip install librosa
|
| 10 |
+
|
| 11 |
RUN pip install -r requirements.txt
|
| 12 |
|
| 13 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|