Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -6,6 +6,11 @@ COPY ./requirements.txt /code/requirements.txt
|
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
COPY . .
|
| 10 |
|
| 11 |
EXPOSE 7860
|
|
|
|
| 6 |
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 8 |
|
| 9 |
+
RUN apt-get update && \
|
| 10 |
+
apt-get install -y git-lfs && \
|
| 11 |
+
rm -rf /var/lib/apt/lists/* && \
|
| 12 |
+
git lfs install
|
| 13 |
+
|
| 14 |
COPY . .
|
| 15 |
|
| 16 |
EXPOSE 7860
|