Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -8,6 +8,8 @@ COPY requirements.txt .
|
|
8 |
|
9 |
# Install the dependencies
|
10 |
RUN pip install -r requirements.txt
|
|
|
|
|
11 |
|
12 |
# Copy the application code
|
13 |
COPY . .
|
|
|
8 |
|
9 |
# Install the dependencies
|
10 |
RUN pip install -r requirements.txt
|
11 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
12 |
+
RUN pip install opencv-python-headless
|
13 |
|
14 |
# Copy the application code
|
15 |
COPY . .
|