Browse Source

Merge pull request #712 from ironnicko/main

add curl to Docker image
Daniel Gatis 7 months ago
parent
commit
6ed08b6914
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Dockerfile

+ 2 - 0
Dockerfile

@@ -4,6 +4,8 @@ WORKDIR /rembg
 
 RUN pip install --upgrade pip
 
+RUN apt-get update && apt-get install -y curl && apt-get clean && rm -rf /var/lib/apt/lists/*
+
 COPY . .
 
 RUN python -m pip install ".[cpu,cli]"