From 83be88aa02199fa1f1bde4db8d8f2fb4aa4ee04d Mon Sep 17 00:00:00 2001 From: henryruhs Date: Tue, 26 Sep 2023 18:50:29 +0200 Subject: [PATCH] Add missing curl to Dockerfiles --- Dockerfile.cpu | 1 + Dockerfile.cuda | 1 + Dockerfile.rocm | 1 + 3 files changed, 3 insertions(+) diff --git a/Dockerfile.cpu b/Dockerfile.cpu index b9e278f..2da600f 100644 --- a/Dockerfile.cpu +++ b/Dockerfile.cpu @@ -6,6 +6,7 @@ ENV GRADIO_SERVER_NAME=0.0.0.0 WORKDIR /facefusion RUN apt-get update +RUN apt-get install curl -y RUN apt-get install ffmpeg -y RUN git clone https://github.com/facefusion/facefusion.git --branch $FACEFUSION_VERSION --single-branch . diff --git a/Dockerfile.cuda b/Dockerfile.cuda index 4c9f2d3..98ca0fe 100644 --- a/Dockerfile.cuda +++ b/Dockerfile.cuda @@ -10,6 +10,7 @@ RUN apt-get install python3.10 -y RUN apt-get install python-is-python3 -y RUN apt-get install pip -y RUN apt-get install git -y +RUN apt-get install curl -y RUN apt-get install ffmpeg -y RUN git clone https://github.com/facefusion/facefusion.git --branch $FACEFUSION_VERSION --single-branch . diff --git a/Dockerfile.rocm b/Dockerfile.rocm index 10f8723..f8e67e9 100644 --- a/Dockerfile.rocm +++ b/Dockerfile.rocm @@ -7,6 +7,7 @@ ENV GRADIO_SERVER_NAME=0.0.0.0 RUN apt-get update RUN apt-get install python3-dev -y RUN apt-get install git -y +RUN apt-get install curl -y RUN apt-get install ffmpeg -y RUN pip install numpy