Spaces:
Sleeping
Sleeping
LVKinyanjui
commited on
Commit
·
a07bd39
1
Parent(s):
84d11e6
Added missing -y flag on apt install
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ FROM python:${PYTHON_VERSION}-slim as base
|
|
4 |
WORKDIR /app
|
5 |
|
6 |
RUN apt update \
|
7 |
-
&& apt install git \
|
8 |
&& rm -rf /var/lib/apt/lists/*
|
9 |
|
10 |
# Install problematic flash attention from source
|
|
|
4 |
WORKDIR /app
|
5 |
|
6 |
RUN apt update \
|
7 |
+
&& apt install git -y \
|
8 |
&& rm -rf /var/lib/apt/lists/*
|
9 |
|
10 |
# Install problematic flash attention from source
|