Fixed requirements typo in Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -26,7 +26,7 @@ RUN apt-get install python3-dev -y
|
|
26 |
WORKDIR /code
|
27 |
|
28 |
# install dependencies
|
29 |
-
COPY
|
30 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
31 |
|
32 |
# resolve issue with tf==2.4 and gradio dependency collision issue
|
|
|
26 |
WORKDIR /code
|
27 |
|
28 |
# install dependencies
|
29 |
+
COPY ./requirements.txt /code/requirements.txt
|
30 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
31 |
|
32 |
# resolve issue with tf==2.4 and gradio dependency collision issue
|