ansal commited on
Commit
c6822d8
1 Parent(s): 724d065

Update Dockerfile

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