Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -12,8 +12,10 @@ WORKDIR /app
|
|
| 12 |
|
| 13 |
COPY . .
|
| 14 |
|
|
|
|
|
|
|
| 15 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 16 |
-
pip install --no-cache-dir
|
| 17 |
"git+https://github.com/huggingface/diffusers.git@main#egg=diffusers" \
|
| 18 |
transformers \
|
| 19 |
accelerate \
|
|
|
|
| 12 |
|
| 13 |
COPY . .
|
| 14 |
|
| 15 |
+
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
| 16 |
+
|
| 17 |
RUN pip install --no-cache-dir --upgrade pip && \
|
| 18 |
+
pip install --no-cache-dir \
|
| 19 |
"git+https://github.com/huggingface/diffusers.git@main#egg=diffusers" \
|
| 20 |
transformers \
|
| 21 |
accelerate \
|