Commit
·
6f8aef4
1
Parent(s):
a0b79f8
build fix
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -7,6 +7,8 @@ WORKDIR /code
|
|
7 |
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
|
|
|
|
10 |
RUN pip install --no-cache-dir --upgrade pip \
|
11 |
&& pip install --no-cache-dir -r /code/requirements.txt
|
12 |
|
|
|
7 |
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
+
RUN apt-get update && apt-get install -y libgl1
|
11 |
+
|
12 |
RUN pip install --no-cache-dir --upgrade pip \
|
13 |
&& pip install --no-cache-dir -r /code/requirements.txt
|
14 |
|