Browse Source

Merge pull request #712 from ironnicko/main

add curl to Docker image
Daniel Gatis 7 tháng trước cách đây
mục cha
commit
6ed08b6914
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  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]"