Skip to content

Commit

Permalink
dockerfile fixed requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
NickLucche committed Oct 11, 2023
1 parent 0f599b3 commit 718e453
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 718e453

Please sign in to comment.