File size: 478 Bytes
8707ad2
bc44885
5014cff
8707ad2
 
 
 
 
bc44885
8707ad2
 
bc44885
8707ad2
 
 
bc44885
5014cff
8707ad2
bc44885
8707ad2
bc44885
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM python:3.10-slim

# Instalar Node.js y JSHint
RUN apt-get update && \
    apt-get install -y curl gnupg && \
    curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
    apt-get install -y nodejs && \
    npm install -g jshint

# Crear directorio para la app
WORKDIR /app

# Copiar archivos
COPY requirements.txt .
COPY app.py .

# Instalar dependencias de Python
RUN pip install --no-cache-dir -r requirements.txt

# Comando por defecto
CMD ["python", "app.py"]