Spaces:
Sleeping
Sleeping
dekh le bro
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
|
@@ -11,7 +11,10 @@ RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
|
| 11 |
|
| 12 |
# 4. Copy the requirements file and install Python dependencies.
|
| 13 |
COPY ./requirements.txt /code/requirements.txt
|
| 14 |
-
RUN
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# 5. Copy all your application files (backend_app.py, best.pt) into the container.
|
| 17 |
COPY . /code/
|
|
|
|
| 11 |
|
| 12 |
# 4. Copy the requirements file and install Python dependencies.
|
| 13 |
COPY ./requirements.txt /code/requirements.txt
|
| 14 |
+
RUN apt-get update && apt-get install -y \
|
| 15 |
+
libgl1 \
|
| 16 |
+
libglib2.0-0 \
|
| 17 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 18 |
|
| 19 |
# 5. Copy all your application files (backend_app.py, best.pt) into the container.
|
| 20 |
COPY . /code/
|