Browse Source

Update Dockerfile

Daniel Gatis 2 years ago
parent
commit
4975829688
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -4,7 +4,7 @@ WORKDIR /rembg
 
 COPY . .
 RUN pip install --upgrade pip
-RUN python -m pip install .
+RUN python -m pip install ".[cli]"
 RUN python -c 'from rembg.bg import download_models; download_models()'
 
 EXPOSE 5000