Spaces:
Runtime error
Runtime error
MarcSkovMadsen
commited on
Commit
•
2d50870
1
Parent(s):
4b7700c
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
@@ -11,4 +11,8 @@ COPY . .
|
|
11 |
CMD ["panel", "serve", "/code/app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*", "--num-procs", "2", "--index", "app"]
|
12 |
|
13 |
RUN mkdir data
|
14 |
-
RUN chmod 777 data
|
|
|
|
|
|
|
|
|
|
11 |
CMD ["panel", "serve", "/code/app.py", "--address", "0.0.0.0", "--port", "7860", "--allow-websocket-origin", "*", "--num-procs", "2", "--index", "app"]
|
12 |
|
13 |
RUN mkdir data
|
14 |
+
RUN chmod 777 data
|
15 |
+
|
16 |
+
ENV NUMBA_CACHE_DIR=/code/.cache
|
17 |
+
RUN mkdir .cache
|
18 |
+
RUN chmod 777 .cache
|