nroggendorff commited on
Commit
41f9ba5
·
verified ·
1 Parent(s): 96e5830

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 --prefer-binary \
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 \