llm-web-scrapper / Dockerfile
frkhan's picture
- Added docstring for the whole project
9536c67
raw
history blame contribute delete
319 Bytes
FROM mcr.microsoft.com/playwright/python:v1.54.0-noble
WORKDIR /app
RUN apt-get update && apt-get upgrade -y && apt-get clean
COPY requirements.txt .
RUN pip install --break-system-packages -r requirements.txt
RUN python -m playwright install --with-deps chromium
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]