geronimo-pericoli commited on
Commit
24c6c3b
·
verified ·
1 Parent(s): db00de5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -6
Dockerfile CHANGED
@@ -3,15 +3,14 @@ FROM python:3.10-slim
3
 
4
  WORKDIR /app
5
 
6
- # Instalar dependencias del sistema
7
- RUN apt-get update && apt-get install -y --no-install-recommends \
8
- gcc python3-dev && \
9
- rm -rf /var/lib/apt/lists/*
10
-
11
  COPY . .
12
 
 
13
  RUN pip install --upgrade pip && \
14
- pip install --no-cache-dir fastapi uvicorn jinja2 fastmcp
 
 
 
15
 
16
  EXPOSE 7860
17
 
 
3
 
4
  WORKDIR /app
5
 
 
 
 
 
 
6
  COPY . .
7
 
8
+ # Instala dependencias
9
  RUN pip install --upgrade pip && \
10
+ pip install fastapi uvicorn jinja2 fastmcp
11
+
12
+ # Crea directorio templates
13
+ RUN mkdir -p /app/templates
14
 
15
  EXPOSE 7860
16