ning8429 commited on
Commit
61f9cb6
·
verified ·
1 Parent(s): 16ac16b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -4,6 +4,11 @@ FROM python:3.9
4
  # Set the working directory in the container
5
  WORKDIR /app
6
 
 
 
 
 
 
7
  # Copy the requirements.txt file and install the Python dependencies
8
  COPY requirements.txt .
9
  RUN pip install --no-cache-dir -r requirements.txt
 
4
  # Set the working directory in the container
5
  WORKDIR /app
6
 
7
+ # Install system dependencies
8
+ RUN apt-get update && apt-get install -y \
9
+ libgl1-mesa-glx \
10
+ && rm -rf /var/lib/apt/lists/*
11
+
12
  # Copy the requirements.txt file and install the Python dependencies
13
  COPY requirements.txt .
14
  RUN pip install --no-cache-dir -r requirements.txt