maham234 commited on
Commit
8258acd
·
verified ·
1 Parent(s): 8dbd2cc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -1,6 +1,11 @@
1
- # Use Python 3.10 image
2
  FROM python:3.10-slim
3
 
 
 
 
 
 
 
4
  # Set working directory
5
  WORKDIR /app
6
 
 
 
1
  FROM python:3.10-slim
2
 
3
+ # Install system dependencies for OpenCV
4
+ RUN apt-get update && apt-get install -y \
5
+ libgl1-mesa-glx \
6
+ libglib2.0-0 \
7
+ && rm -rf /var/lib/apt/lists/*
8
+
9
  # Set working directory
10
  WORKDIR /app
11