Spaces:
Running
Running
Commit
·
a5623ae
1
Parent(s):
6064a78
setup
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
@@ -1,7 +1,12 @@
|
|
1 |
FROM python:3.10.9
|
2 |
|
3 |
WORKDIR /code
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
5 |
COPY ./requirements.txt /code/requirements.txt
|
6 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
7 |
|
|
|
1 |
FROM python:3.10.9
|
2 |
|
3 |
WORKDIR /code
|
4 |
+
RUN apt-get update && apt-get install -y \
|
5 |
+
libgl1-mesa-glx \
|
6 |
+
libglib2.0-0 \
|
7 |
+
libsm6 \
|
8 |
+
libxext6 \
|
9 |
+
libxrender-dev
|
10 |
COPY ./requirements.txt /code/requirements.txt
|
11 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
|