Spaces:
Sleeping
Sleeping
Jainam Jain commited on
Commit ·
d66de2b
1
Parent(s): 990a43a
DockerFile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -4,6 +4,9 @@ WORKDIR /code
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
|
|
|
|
|
|
|
|
|
| 7 |
RUN pip install --upgrade pip
|
| 8 |
|
| 9 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
|
| 4 |
|
| 5 |
COPY ./requirements.txt /code/requirements.txt
|
| 6 |
|
| 7 |
+
RUN sudo apt-get update
|
| 8 |
+
RUN sudo apt-get install libgl1-mesa-glx
|
| 9 |
+
|
| 10 |
RUN pip install --upgrade pip
|
| 11 |
|
| 12 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|