Skip to content

Instantly share code, notes, and snippets.

@toosuto-r
toosuto-r / Dockerfile
Created July 18, 2023 09:25
Google scraper blog snippet
FROM ubuntu:focal
COPY googleScraperSetup.sh /googleScraperSetup.sh
RUN chmod 777 /googleScraperSetup.sh
RUN /googleScraperSetup.sh
COPY googleScraper.py /googleScraper.py
CMD python3 /googleScraper.py >/pyoutlog.log 2>&1