diff --git a/AUTOMATIC1111/Dockerfile b/AUTOMATIC1111/Dockerfile index fd72982..0b4c04a 100644 --- a/AUTOMATIC1111/Dockerfile +++ b/AUTOMATIC1111/Dockerfile @@ -10,29 +10,37 @@ git clone https://github.com/CompVis/taming-transformers.git repositories/taming rm -rf repositories/taming-transformers/data repositories/taming-transformers/assets EOF -FROM pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime + +FROM continuumio/miniconda3:4.12.0 SHELL ["/bin/bash", "-ceuxo", "pipefail"] ENV DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get install git fonts-dejavu-core -y && apt-get clean + +RUN conda install python=3.8.5 && conda clean -a -y +RUN conda install pytorch==1.11.0 torchvision==0.12.0 cudatoolkit=11.3 -c pytorch && conda clean -a -y + +RUN apt-get update && apt install fonts-dejavu-core rsync -y && apt-get clean + RUN <