From 03c6637715244bb73f99089f34b18aa708a90800 Mon Sep 17 00:00:00 2001 From: Abdullah Barhoum Date: Sat, 10 Sep 2022 16:34:01 +0200 Subject: [PATCH] Update Automatic to 1b963c20 --- AUTOMATIC1111/Dockerfile | 24 ++++++++++++++++-------- AUTOMATIC1111/mount.sh | 6 ++++-- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/AUTOMATIC1111/Dockerfile b/AUTOMATIC1111/Dockerfile index fd72982..0e17917 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 <