RaulHuarote commited on
Commit
02ad970
·
verified ·
1 Parent(s): 6f2dc87

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -6,6 +6,7 @@ WORKDIR /code
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
 
10
  COPY . .
11
 
 
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
10
 
11
  COPY . .
12