Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -7,8 +7,11 @@ RUN apt-get update && apt-get install -y \
|
|
7 |
build-essential \
|
8 |
curl \
|
9 |
git \
|
|
|
10 |
libgl1-mesa-glx \
|
11 |
-
|
|
|
|
|
12 |
&& rm -rf /var/lib/apt/lists/*
|
13 |
|
14 |
COPY requirements.txt ./
|
|
|
7 |
build-essential \
|
8 |
curl \
|
9 |
git \
|
10 |
+
# --- OpenCV System Dependencies ---
|
11 |
libgl1-mesa-glx \
|
12 |
+
libglib2.0-0 \
|
13 |
+
libsm6 \
|
14 |
+
libxext6 \
|
15 |
&& rm -rf /var/lib/apt/lists/*
|
16 |
|
17 |
COPY requirements.txt ./
|