Narendra9009 commited on
Commit
af4e793
·
1 Parent(s): 8eb40da
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -4,6 +4,10 @@ FROM python:3.13.1
4
  WORKDIR /app
5
 
6
  COPY requirements.txt .
 
 
 
 
7
  RUN pip install --no-cache-dir -r requirements.txt
8
 
9
  # Copy everything from the current directory to the container
 
4
  WORKDIR /app
5
 
6
  COPY requirements.txt .
7
+ RUN apt-get update && apt-get install -y \
8
+ libgl1-mesa-glx \
9
+ libglib2.0-0
10
+
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  # Copy everything from the current directory to the container