From 4fa2ae956fe440058488fb92a0a7b3328054bc0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Henrique?= Date: Thu, 28 Sep 2023 21:03:32 -0300 Subject: [PATCH] curl --- ActixAPI/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ActixAPI/Dockerfile b/ActixAPI/Dockerfile index 15fc885..6270dff 100644 --- a/ActixAPI/Dockerfile +++ b/ActixAPI/Dockerfile @@ -18,7 +18,8 @@ FROM debian:bullseye-slim ENV MAGICK_VERSION 7.1 -RUN curl https://imagemagick.org/archive/ImageMagick.tar.gz | tar xz \ +RUN apt update && apt install curl -y \ + && curl https://imagemagick.org/archive/ImageMagick.tar.gz | tar xz \ && cd ImageMagick-${MAGICK_VERSION}* \ && ./configure --with-magick-plus-plus=no --with-perl=no \ && make \