Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# Usa una imagen base de Python
|
| 2 |
-
FROM python:3.
|
| 3 |
# Establece el directorio de trabajo
|
| 4 |
WORKDIR /code
|
| 5 |
|
|
@@ -7,6 +7,7 @@ WORKDIR /code
|
|
| 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 |
|
|
|
|
| 1 |
# Usa una imagen base de Python
|
| 2 |
+
FROM python:3.13.0
|
| 3 |
# Establece el directorio de trabajo
|
| 4 |
WORKDIR /code
|
| 5 |
|
|
|
|
| 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 |
+
RUN pip install pillow
|
| 11 |
|
| 12 |
COPY . .
|
| 13 |
|