Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
|
@@ -1,6 +1,11 @@
|
|
| 1 |
# Usar una imagen base oficial de Python
|
| 2 |
FROM python:3.9-slim
|
| 3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
# Establecer el directorio de trabajo
|
| 5 |
WORKDIR /app
|
| 6 |
|
|
|
|
| 1 |
# Usar una imagen base oficial de Python
|
| 2 |
FROM python:3.9-slim
|
| 3 |
|
| 4 |
+
RUN pip install --no-cache-dir tensorflow==2.11.0
|
| 5 |
+
RUN pip install --no-cache-dir opencv-python==4.6.0.66
|
| 6 |
+
RUN pip install --no-cache-dir gradio==3.0.0
|
| 7 |
+
RUN pip install --no-cache-dir numpy==1.23.0
|
| 8 |
+
|
| 9 |
# Establecer el directorio de trabajo
|
| 10 |
WORKDIR /app
|
| 11 |
|