Spaces:
No application file
No application file
Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
|
@@ -7,11 +7,12 @@ RUN apt-get update && apt-get install -y \
|
|
| 7 |
curl \
|
| 8 |
software-properties-common \
|
| 9 |
git \
|
| 10 |
-
libgl1 \
|
|
|
|
| 11 |
&& rm -rf /var/lib/apt/lists/*
|
| 12 |
|
| 13 |
-
COPY requirements.txt
|
| 14 |
-
COPY app.py .
|
| 15 |
|
| 16 |
RUN pip3 install -r requirements.txt
|
| 17 |
|
|
|
|
| 7 |
curl \
|
| 8 |
software-properties-common \
|
| 9 |
git \
|
| 10 |
+
libgl1-mesa-glx \
|
| 11 |
+
libglib2.0-0 \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
|
| 14 |
+
COPY requirements.txt .
|
| 15 |
+
COPY app.py .
|
| 16 |
|
| 17 |
RUN pip3 install -r requirements.txt
|
| 18 |
|