Merge pull request #4 from andreped/dev
Browse filesUpgraded typing_extensions to 4.4.0 due to install bug in Docker
- .dockerignore +1 -0
- .gitignore +1 -0
- Dockerfile +1 -1
.dockerignore
CHANGED
@@ -8,3 +8,4 @@ resources/
|
|
8 |
*.obj
|
9 |
*log.csv
|
10 |
*.ini
|
|
|
|
8 |
*.obj
|
9 |
*log.csv
|
10 |
*.ini
|
11 |
+
gradio_cached_examples/
|
.gitignore
CHANGED
@@ -8,3 +8,4 @@ resources/
|
|
8 |
*.obj
|
9 |
*log.csv
|
10 |
*.ini
|
|
|
|
8 |
*.obj
|
9 |
*log.csv
|
10 |
*.ini
|
11 |
+
gradio_cached_examples/
|
Dockerfile
CHANGED
@@ -37,7 +37,7 @@ COPY ./requirements.txt /code/requirements.txt
|
|
37 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
38 |
|
39 |
# resolve issue with tf==2.4 and gradio dependency collision issue
|
40 |
-
RUN pip install --force-reinstall typing_extensions==4.
|
41 |
|
42 |
# Install wget
|
43 |
RUN apt install wget -y && \
|
|
|
37 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
38 |
|
39 |
# resolve issue with tf==2.4 and gradio dependency collision issue
|
40 |
+
RUN pip install --force-reinstall typing_extensions==4.4.0
|
41 |
|
42 |
# Install wget
|
43 |
RUN apt install wget -y && \
|