Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -5,6 +5,7 @@ WORKDIR /code
|
|
| 5 |
|
| 6 |
# Copia los archivos necesarios al contenedor
|
| 7 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
|
| 8 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
| 9 |
RUN pip install fastapi uvicorn pillow opencv-python
|
| 10 |
|
|
|
|
| 5 |
|
| 6 |
# Copia los archivos necesarios al contenedor
|
| 7 |
COPY ./requirements.txt /code/requirements.txt
|
| 8 |
+
RUN apt-get update && apt-get install -y libgl1-mesa-glx
|
| 9 |
RUN pip install --no-cache-dir -r /code/requirements.txt
|
| 10 |
RUN pip install fastapi uvicorn pillow opencv-python
|
| 11 |
|