yonikremer
commited on
Commit
·
bb33aa7
1
Parent(s):
7303201
stopped downloading the models in the dockerfile
Browse files- Dockerfile +1 -8
Dockerfile
CHANGED
@@ -15,13 +15,6 @@ ENV TRANSFORMERS_CACHE="/app/my_streamlit_app/.cache/transformers"
|
|
15 |
|
16 |
ENV TOKENIZERS_PARALLELISM=false
|
17 |
|
18 |
-
COPY
|
19 |
-
COPY ./available_models.py /app/my_streamlit_app/available_models.py
|
20 |
-
|
21 |
-
RUN python /app/my_streamlit_app/download_repo.py
|
22 |
-
|
23 |
-
COPY ./app.py /app/my_streamlit_app/app.py
|
24 |
-
COPY ./hanlde_form_submit.py /app/my_streamlit_app/hanlde_form_submit.py
|
25 |
-
COPY ./user_instructions_hebrew.md /app/my_streamlit_app/user_instructions_hebrew.md
|
26 |
|
27 |
CMD ["streamlit", "run", "--server.port", "7860", "--server.enableCORS", "false", "--server.enableXsrfProtection", "false", "--browser.gatherUsageStats", "false", "--theme.base", "dark", "--server.maxUploadSize", "1000", "/app/my_streamlit_app/app.py"]
|
|
|
15 |
|
16 |
ENV TOKENIZERS_PARALLELISM=false
|
17 |
|
18 |
+
COPY . /app/my_streamlit_app/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
CMD ["streamlit", "run", "--server.port", "7860", "--server.enableCORS", "false", "--server.enableXsrfProtection", "false", "--browser.gatherUsageStats", "false", "--theme.base", "dark", "--server.maxUploadSize", "1000", "/app/my_streamlit_app/app.py"]
|