jake2004 commited on
Commit
4f3d2c1
·
verified ·
1 Parent(s): f8e0442

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -1,6 +1,11 @@
1
  FROM python:3.9
2
 
3
  WORKDIR /app
 
 
 
 
 
4
  COPY requirements.txt .
5
  RUN pip install --no-cache-dir -r requirements.txt
6
 
 
1
  FROM python:3.9
2
 
3
  WORKDIR /app
4
+
5
+ # Install system dependencies for OpenCV
6
+ RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
7
+
8
+ # Copy and install Python dependencies
9
  COPY requirements.txt .
10
  RUN pip install --no-cache-dir -r requirements.txt
11