NaveenKumar5 commited on
Commit
09ee295
·
verified ·
1 Parent(s): 1873398

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -4,6 +4,9 @@ FROM python:3.9-slim
4
  # Set working directory
5
  WORKDIR /app
6
 
 
 
 
7
  # Copy requirements and install
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
 
4
  # Set working directory
5
  WORKDIR /app
6
 
7
+ # Install system dependencies
8
+ RUN apt-get update && apt-get install -y libgl1
9
+
10
  # Copy requirements and install
11
  COPY requirements.txt .
12
  RUN pip install --no-cache-dir -r requirements.txt