Spaces:
Runtime error
Runtime error
camphong24032002
commited on
Commit
•
261a909
1
Parent(s):
3e019f8
Test
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -16,9 +16,11 @@ COPY . .
|
|
16 |
|
17 |
RUN chown -R 1000:1000 /code
|
18 |
|
19 |
-
|
|
|
|
|
20 |
|
21 |
-
|
22 |
|
23 |
RUN python -c "import nltk; nltk.download('stopwords')"
|
24 |
|
|
|
16 |
|
17 |
RUN chown -R 1000:1000 /code
|
18 |
|
19 |
+
ENV NKTL_DATA=/nltk_data
|
20 |
+
|
21 |
+
RUN chown -R 1000:1000 /nltk_data
|
22 |
|
23 |
+
USER 1000
|
24 |
|
25 |
RUN python -c "import nltk; nltk.download('stopwords')"
|
26 |
|