From 9acda05e9ce678f9070196305a31fb7639c0d0a8 Mon Sep 17 00:00:00 2001 From: mrhan1993 <50648276+mrhan1993@users.noreply.github.com> Date: Wed, 10 Apr 2024 14:25:23 +0800 Subject: [PATCH] update Dockerfile to solve install failed for opencv-python-headless --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4807216..9d45235 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ COPY . /app RUN pip install --no-cache-dir -r requirements.txt -RUN pip install --no-cache-dir opencv-python-headless +RUN pip install --no-cache-dir opencv-python-headless -i https://pypi.org/simple EXPOSE 8888