andreped commited on
Commit
e33a06e
·
unverified ·
2 Parent(s): 6f732cb d9f6fb5

Merge pull request #4 from andreped/dev

Browse files

Upgraded typing_extensions to 4.4.0 due to install bug in Docker

Files changed (3) hide show
  1. .dockerignore +1 -0
  2. .gitignore +1 -0
  3. 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.0.0
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 && \