evildeity commited on
Commit
189e99d
·
verified ·
1 Parent(s): adf9c6b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -4,6 +4,9 @@ FROM python:3.10
4
  # Set the working directory
5
  WORKDIR /app
6
 
 
 
 
7
  # Copy all project files into the Docker image
8
  COPY . /app
9
 
 
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
+ # Install the missing dependency for OpenCV
8
+ RUN apt-get update && apt-get install -y libgl1-mesa-glx
9
+
10
  # Copy all project files into the Docker image
11
  COPY . /app
12