We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053b6ef commit ee0dc87Copy full SHA for ee0dc87
deforum_sd/Dockerfile
@@ -28,7 +28,7 @@ RUN curl -s -S -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master
28
pyenv global 3.10
29
30
# copy to /src
31
-ENV WORKDIR /src
+ENV WORKDIR=/src
32
RUN mkdir -p $WORKDIR
33
WORKDIR $WORKDIR
34
@@ -40,7 +40,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
40
libgl1-mesa-glx \
41
ffmpeg \
42
&& rm -rf /var/lib/apt/lists/*
43
-COPY deforum_sd/requirements.txt .
+COPY ./requirements.txt .
44
RUN pip install --no-cache-dir -U pip && pip install --no-cache-dir Cython && pip install --no-cache-dir -r requirements.txt
45
46
# copy sources
0 commit comments