File size: 390 Bytes
c6a6a90
8b7419b
 
 
 
6d40355
 
 
 
c6a6a90
 
8b7419b
 
 
 
6d40355
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM mcr.microsoft.com/playwright/python:v1.58.0-noble

WORKDIR /app

COPY requirements.txt /app/requirements.txt

RUN pip install --no-cache-dir --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt

# Reinstala/asegura Chromium para la versión exacta de Playwright instalada por pip
RUN python -m playwright install chromium

COPY . /app

EXPOSE 7860

CMD ["python", "app.py"]