AdarshDRC commited on
Commit
0a70bdc
·
verified ·
1 Parent(s): ae5af92

Update Dockerfile

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