├── .github └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── README.md ├── entrypoint.sh ├── requirements.txt └── scrapyd.conf /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzihang123/scrapyd_pyppeteer/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzihang123/scrapyd_pyppeteer/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzihang123/scrapyd_pyppeteer/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzihang123/scrapyd_pyppeteer/HEAD/README.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzihang123/scrapyd_pyppeteer/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzihang123/scrapyd_pyppeteer/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapyd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luzihang123/scrapyd_pyppeteer/HEAD/scrapyd.conf --------------------------------------------------------------------------------