Junior16 commited on
Commit
01166c8
·
verified ·
1 Parent(s): f208e9e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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