Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
|