Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -4,6 +4,9 @@ FROM python:3.10
|
|
| 4 |
# Set the working directory
|
| 5 |
WORKDIR /app
|
| 6 |
|
|
|
|
|
|
|
|
|
|
| 7 |
# Copy all project files into the Docker image
|
| 8 |
COPY . /app
|
| 9 |
|
|
|
|
| 4 |
# Set the working directory
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
+
# Install the missing dependency for OpenCV
|
| 8 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
| 9 |
+
|
| 10 |
# Copy all project files into the Docker image
|
| 11 |
COPY . /app
|
| 12 |
|