Spaces:
Sleeping
Sleeping
libboost
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -2,7 +2,7 @@ FROM python:3.12.1
|
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
5 |
-
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|
|
|
2 |
|
3 |
WORKDIR /code
|
4 |
|
5 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx libboost-thread1.74.0 && rm -rf /var/lib/apt/lists/*
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
7 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
8 |
|