diff --git a/docker/stable-diffusion-serving.Dockerfile b/docker/stable-diffusion-serving.Dockerfile index 11a8ee2..eb9eff7 100644 --- a/docker/stable-diffusion-serving.Dockerfile +++ b/docker/stable-diffusion-serving.Dockerfile @@ -3,7 +3,6 @@ FROM nvidia/cuda:11.7.1-runtime-ubuntu20.04 ENV PATH="/root/miniconda3/bin:${PATH}" ARG PATH="/root/miniconda3/bin:${PATH}" -RUN RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && \ apt-get install -y wget fonts-dejavu-core rsync git libglib2.0-0 && \ @@ -23,11 +22,9 @@ RUN cd stable-diffusion && git pull && git reset --hard c5b2c86f1479dec75b0e92dd conda env update --file environment.yaml --name base && conda clean -a -y # Textual-inversion: -RUN <