From fafde9f50eb9ef3fb43fc6518ff40c9c3ab2314c Mon Sep 17 00:00:00 2001 From: hodanov <1031hoda@gmail.com> Date: Mon, 30 Oct 2023 10:16:10 +0900 Subject: [PATCH] Repair to install wget by apt-get instead of pip. --- setup_files/Dockerfile | 2 +- setup_files/requirements.txt | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/setup_files/Dockerfile b/setup_files/Dockerfile index 538d618..7657b5e 100644 --- a/setup_files/Dockerfile +++ b/setup_files/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.11.3-slim-bullseye COPY ./requirements.txt / RUN apt-get update \ - && apt-get install libgl1-mesa-glx libglib2.0-0 --no-install-recommends -y \ + && apt-get install wget libgl1-mesa-glx libglib2.0-0 --no-install-recommends -y \ && apt-get autoremove -y \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* \ diff --git a/setup_files/requirements.txt b/setup_files/requirements.txt index dbaa5fb..7ecba63 100644 --- a/setup_files/requirements.txt +++ b/setup_files/requirements.txt @@ -21,7 +21,4 @@ controlnet_aux pyyaml # Use the below in 'download_from_original_stable_diffusion_ckpt'. -omegaconf==2.3.0 - -# Another tools -wget==3.2 \ No newline at end of file +omegaconf==2.3.0 \ No newline at end of file