Ver código fonte

add curl to Docker image

ironnicko 7 meses atrás
pai
commit
8a5d7d5a6d
1 arquivos alterados com 2 adições e 0 exclusões
  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]"