File size: 314 Bytes
802684a
504b397
4810a68
 
 
 
 
802684a
504b397
802684a
 
1
2
3
4
5
6
7
8
9
10
11
FROM mcr.microsoft.com/playwright/python:v1.49.1-jammy
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV HOME=/tmp
COPY requirements.txt .
RUN pip install --no-cache-dir --root-user-action=ignore -r requirements.txt
RUN playwright install chromium
COPY . .
EXPOSE 7860
CMD ["python", "main.py"]