Commit
·
9fdff39
1
Parent(s):
4ca6389
sets TOKENIZERS_PARALLELISM to flase
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -13,6 +13,8 @@ ENV HUGGINGFACE_HUB_CACHE="/app/my_streamlit_app/.cache/huggingface"
|
|
13 |
RUN mkdir --mode 777 "/app/my_streamlit_app/.cache/transformers/"
|
14 |
ENV TRANSFORMERS_CACHE="/app/my_streamlit_app/.cache/transformers"
|
15 |
|
|
|
|
|
16 |
COPY . /app/my_streamlit_app/
|
17 |
|
18 |
CMD ["streamlit", "run", "/app/my_streamlit_app/app.py"]
|
|
|
13 |
RUN mkdir --mode 777 "/app/my_streamlit_app/.cache/transformers/"
|
14 |
ENV TRANSFORMERS_CACHE="/app/my_streamlit_app/.cache/transformers"
|
15 |
|
16 |
+
ENV TOKENIZERS_PARALLELISM=false
|
17 |
+
|
18 |
COPY . /app/my_streamlit_app/
|
19 |
|
20 |
CMD ["streamlit", "run", "/app/my_streamlit_app/app.py"]
|