Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -8,6 +8,6 @@ RUN pip install librosa
|
|
8 |
|
9 |
RUN pip install -r requirements.txt
|
10 |
|
11 |
-
RUN mkdir /cache && chmod 777 /cache
|
12 |
|
13 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
8 |
|
9 |
RUN pip install -r requirements.txt
|
10 |
|
11 |
+
RUN mkdir -p /cache && chmod 777 /cache
|
12 |
|
13 |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|