Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -3,6 +3,8 @@ FROM python:3.9
|
|
3 |
WORKDIR /code
|
4 |
COPY . .
|
5 |
|
|
|
|
|
6 |
RUN pip install --no-cache-dir -r requirements.txt
|
7 |
|
8 |
CMD ["python", "script.py"]
|
|
|
3 |
WORKDIR /code
|
4 |
COPY . .
|
5 |
|
6 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
7 |
+
|
8 |
RUN pip install --no-cache-dir -r requirements.txt
|
9 |
|
10 |
CMD ["python", "script.py"]
|