tst / Dockerfile
attendantelectro's picture
Update Dockerfile
1cc9121 verified
raw
history blame contribute delete
230 Bytes
FROM selenium/standalone-chrome:latest
WORKDIR /app
RUN pip install selenium webdriver-manager zipfile36
# ایجاد پوشه خروجی
RUN mkdir -p /home/seluser/output/pages
COPY scraper.py .
CMD ["python", "scraper.py"]