Update README.md
Browse files- Dockerfile +3 -2
- README.md +2 -2
Dockerfile
CHANGED
@@ -23,9 +23,10 @@ RUN --mount=type=secret,id=GIT_PAT,mode=0444,required=true \
|
|
23 |
|
24 |
COPY . .
|
25 |
|
26 |
-
RUN chmod +x config.sh && ./config.sh && tar -zxf config.tgz && rm -f config.tgz ~/.git-credentials
|
27 |
|
28 |
RUN pip install -U pip && \
|
29 |
pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
30 |
|
31 |
-
CMD ["streamlit", "run", "flipscribe.py", "--server.address", "0.0.0.0", "--server.port", "7860"]
|
|
|
23 |
|
24 |
COPY . .
|
25 |
|
26 |
+
RUN mkdir /.cache && chmod -R a+w /.cache && chmod +x config.sh && ./config.sh && tar -zxf config.tgz && rm -f config.tgz ~/.git-credentials
|
27 |
|
28 |
RUN pip install -U pip && \
|
29 |
pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
30 |
+
|
31 |
|
32 |
+
CMD ["streamlit", "run", "flipscribe.py", "--server.address", "0.0.0.0", "--server.fileWatcherType", "none", "--server.enableXsrfProtection", "false", "--server.port", "7860"]
|
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: ⚡
|
4 |
colorFrom: indigo
|
5 |
colorTo: pink
|
@@ -7,4 +7,4 @@ sdk: docker
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
---
|
2 |
+
title: 'Filipino Video Transcriber'
|
3 |
emoji: ⚡
|
4 |
colorFrom: indigo
|
5 |
colorTo: pink
|
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
10 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|