Spaces:
Sleeping
Sleeping
added libgl
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -9,6 +9,8 @@ WORKDIR /code
|
|
9 |
|
10 |
# 3. Install system dependencies if any (e.g., for OpenCV if you were using it)
|
11 |
# RUN apt-get update && apt-get install -y --no-install-recommends some-package && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
12 |
|
13 |
# 4. Copy the requirements file into the container
|
14 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
9 |
|
10 |
# 3. Install system dependencies if any (e.g., for OpenCV if you were using it)
|
11 |
# RUN apt-get update && apt-get install -y --no-install-recommends some-package && rm -rf /var/lib/apt/lists/*
|
12 |
+
RUN apt-get update && apt-get install -y libgl1 libglib2.0-0
|
13 |
+
|
14 |
|
15 |
# 4. Copy the requirements file into the container
|
16 |
COPY ./requirements.txt /code/requirements.txt
|