From 4a6268abbdba400a2068fb76f67a84160dbd4067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Pedersen?= Date: Wed, 18 Oct 2023 15:56:27 +0200 Subject: [PATCH] Fixed requirements typo in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2aa7fce..521a9fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN apt-get install python3-dev -y WORKDIR /code # install dependencies -COPY .requirements.txt /code/requirements.txt +COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt # resolve issue with tf==2.4 and gradio dependency collision issue