arsh1101 commited on
Commit
3c1cdfc
Β·
verified Β·
1 Parent(s): f7ef5f7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile CHANGED
@@ -6,6 +6,14 @@ WORKDIR /app
6
  # Install system dependencies for OpenCV
7
  RUN apt-get update && apt-get install -y libgl1 && apt-get clean && rm -rf /var/lib/apt/lists/*
8
 
 
 
 
 
 
 
 
 
9
  # Copy application files
10
  COPY . /app
11
 
 
6
  # Install system dependencies for OpenCV
7
  RUN apt-get update && apt-get install -y libgl1 && apt-get clean && rm -rf /var/lib/apt/lists/*
8
 
9
+ # ─── Install Git LFS & fetch the real model file ────────────────────────
10
+ RUN apt-get update \
11
+ && apt-get install -y git-lfs libgl1 \
12
+ && git lfs install \
13
+ && git lfs pull \
14
+ && apt-get clean \
15
+ && rm -rf /var/lib/apt/lists/*
16
+
17
  # Copy application files
18
  COPY . /app
19