diff --git a/Dockerfile b/Dockerfile index feba601..4649d8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ FROM pytorch/pytorch:1.12.1-cuda11.3-cudnn8-runtime COPY . /app WORKDIR /app +RUN apt update && apt install -y git RUN pip install -r requirements.txt -# TODO this version must be fixed as soon as it is released! -RUN apt update && apt install -y git && pip install --upgrade git+https://github.com/huggingface/diffusers.git ENV GRADIO_SERVER_PORT=7860 ENV GRADIO_SERVER_NAME=0.0.0.0 EXPOSE 7860