Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -8,6 +8,11 @@ RUN pip install --upgrade pip
|
|
| 8 |
# Copy the requirements file
|
| 9 |
COPY ./requirements.txt /code/requirements.txt
|
| 10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
# Install the dependencies
|
| 12 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
| 13 |
|
|
|
|
| 8 |
# Copy the requirements file
|
| 9 |
COPY ./requirements.txt /code/requirements.txt
|
| 10 |
|
| 11 |
+
RUN apt-get update && apt-get install -y \
|
| 12 |
+
libgl1-mesa-glx \
|
| 13 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 14 |
+
|
| 15 |
+
|
| 16 |
# Install the dependencies
|
| 17 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
| 18 |
|