Spaces:
Sleeping
Sleeping
Update Dockerfile
#1
by
singhjagpreet
- opened
- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -8,6 +8,10 @@ COPY requirements.txt /app/.
|
|
8 |
COPY app.py /app/.
|
9 |
COPY chainlit.md /app/.
|
10 |
|
|
|
|
|
|
|
|
|
11 |
|
12 |
RUN pip install -r requirements.txt
|
13 |
|
|
|
8 |
COPY app.py /app/.
|
9 |
COPY chainlit.md /app/.
|
10 |
|
11 |
+
RUN mkdir -p /app/demucscache
|
12 |
+
RUN chmod -R 777 /app/demucscache
|
13 |
+
RUN ln -s /app/demucscache /.cache
|
14 |
+
|
15 |
|
16 |
RUN pip install -r requirements.txt
|
17 |
|