ediors/browser-use
0
1FROM python:3.112 3WORKDIR /app4 5 6COPY requirements.txt .7 8RUN pip install --no-cache-dir -r requirements.txt9 10 11RUN playwright install firefox12 13 14COPY . .15 16 17CMD ["python","app.py"]1FROM python:3.112 3WORKDIR /app4 5 6COPY requirements.txt .7 8RUN pip install --no-cache-dir -r requirements.txt9 10 11RUN playwright install firefox12 13 14COPY . .15 16 17CMD ["python","app.py"]