andreped commited on
Commit
4737353
1 Parent(s): dc729d7

Fixed reqs file path in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -33,8 +33,8 @@ RUN apt-get install python3-dev -y
33
  WORKDIR /code
34
 
35
  # install dependencies
36
- 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.7.1
 
33
  WORKDIR /code
34
 
35
  # install dependencies
36
+ COPY ./demo/requirements.txt /code/demo/requirements.txt
37
+ RUN pip install --no-cache-dir --upgrade -r /code/demo/requirements.txt
38
 
39
  # resolve issue with tf==2.4 and gradio dependency collision issue
40
  RUN pip install --force-reinstall typing_extensions==4.7.1