Spaces:
Running
Running
Erythrocyte3803
commited on
Commit
•
e4168ea
1
Parent(s):
c96e43f
UPDATE
Browse files- Dockerfile +3 -1
- cache/.gitkeep +0 -0
- requirements.txt +0 -1
Dockerfile
CHANGED
@@ -2,7 +2,9 @@ FROM python:3.10
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
-
ENV NUMBA_CACHE_DIR
|
|
|
|
|
6 |
|
7 |
COPY ./requirements.txt requirements.txt
|
8 |
|
|
|
2 |
|
3 |
WORKDIR /app
|
4 |
|
5 |
+
ENV NUMBA_CACHE_DIR=/app/cache
|
6 |
+
RUN mkdir -p /app/cache
|
7 |
+
RUN chmod 777 /app/cache
|
8 |
|
9 |
COPY ./requirements.txt requirements.txt
|
10 |
|
cache/.gitkeep
DELETED
File without changes
|
requirements.txt
CHANGED
@@ -26,5 +26,4 @@ jieba
|
|
26 |
LangSegment>=0.2.0
|
27 |
Faster_Whisper
|
28 |
wordsegment
|
29 |
-
jupyterlab
|
30 |
torchmetrics==0.11.4
|
|
|
26 |
LangSegment>=0.2.0
|
27 |
Faster_Whisper
|
28 |
wordsegment
|
|
|
29 |
torchmetrics==0.11.4
|