crabbly commited on
Commit
1533be7
·
verified ·
1 Parent(s): 3be7fd1

Update Dockerfile

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