Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -6,8 +6,7 @@ WORKDIR /app
|
|
| 6 |
# Copy the current directory contents into the container at /app
|
| 7 |
COPY . /app
|
| 8 |
|
| 9 |
-
RUN apt-get update
|
| 10 |
-
RUN apt-get install libgl1-mesa-glx
|
| 11 |
|
| 12 |
# Install any needed dependencies specified in requirements.txt
|
| 13 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
| 6 |
# Copy the current directory contents into the container at /app
|
| 7 |
COPY . /app
|
| 8 |
|
| 9 |
+
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y && apt-get install -y python3-opencv
|
|
|
|
| 10 |
|
| 11 |
# Install any needed dependencies specified in requirements.txt
|
| 12 |
RUN pip install --no-cache-dir -r requirements.txt
|