Spaces:
Running
Running
Huy Nguyen
commited on
Commit
·
e31bb8a
1
Parent(s):
8d827c4
add missing dependenci(es)
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -9,6 +9,8 @@ ENV HOME=/home/user \
|
|
9 |
|
10 |
WORKDIR $HOME/app
|
11 |
|
|
|
|
|
12 |
COPY --chown=user ./requirements.txt $HOME/app/requirements.txt
|
13 |
|
14 |
RUN pip install --no-cache-dir --upgrade -r $HOME/app/requirements.txt
|
|
|
9 |
|
10 |
WORKDIR $HOME/app
|
11 |
|
12 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx libxext6
|
13 |
+
|
14 |
COPY --chown=user ./requirements.txt $HOME/app/requirements.txt
|
15 |
|
16 |
RUN pip install --no-cache-dir --upgrade -r $HOME/app/requirements.txt
|