{"id":13474183,"url":"https://github.com/ianwalter/puppeteer-container","last_synced_at":"2025-03-26T21:30:44.853Z","repository":{"id":47353189,"uuid":"164907365","full_name":"ianwalter/puppeteer-container","owner":"ianwalter","description":"A GitHub Action / Docker image for   Puppeteer, the Headless Chrome Node API","archived":true,"fork":false,"pushed_at":"2021-08-25T03:26:03.000Z","size":1030,"stargazers_count":93,"open_issues_count":0,"forks_count":18,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-29T10:47:39.007Z","etag":null,"topics":["docker","docker-image","github-action","puppeteer"],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ianwalter.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"ianwalter"}},"created_at":"2019-01-09T17:25:50.000Z","updated_at":"2024-08-07T16:44:16.000Z","dependencies_parsed_at":"2023-01-11T17:22:59.021Z","dependency_job_id":null,"html_url":"https://github.com/ianwalter/puppeteer-container","commit_stats":{"total_commits":162,"total_committers":7,"mean_commits":"23.142857142857142","dds":"0.48765432098765427","last_synced_commit":"d50433d5b7595870c2726b2920ad9760987fcca2"},"previous_names":["ianwalter/puppeteer"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fpuppeteer-container","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fpuppeteer-container/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fpuppeteer-container/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ianwalter%2Fpuppeteer-container/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ianwalter","download_url":"https://codeload.github.com/ianwalter/puppeteer-container/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245738487,"owners_count":20664288,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","docker-image","github-action","puppeteer"],"created_at":"2024-07-31T16:01:10.154Z","updated_at":"2025-03-26T21:30:44.556Z","avatar_url":"https://github.com/ianwalter.png","language":"Dockerfile","funding_links":["https://github.com/sponsors/ianwalter"],"categories":["Community Resources","Dockerfile"],"sub_categories":["Testing and Linting"],"readme":"# ianwalter/puppeteer-container\n\u003e A GitHub Action / Docker image for Puppeteer, the Headless Chrome Node API\n\n## DEPRECATED\n\nSorry, I've switched to Playwright and no longer use Puppeteer. You should be\nable to use [ianwalter/playwright-container][playwrightUrl] instead by setting\nenvironment variables like:\n\n- `PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true`\n- `PUPPETEER_EXECUTABLE_PATH=/opt/playwright-browsers/chromium-857950/chrome-linux/chrome`\n\nSo that Puppeteer doesn't download Chromium and uses the existig binary in the\nimage.\n\n## About\n\nForked from [buildkite/puppeteer][buildkiteUrl] and based on\n[this troubleshooting guide][troubleshootingUrl].\n\n## Usage\n\nPuppeteer will need to be launched with:\n\n```js\nbrowser.launch({ args: ['--no-sandbox'] })\n```\n\nThis is done by default in [@ianwalter/bff-puppeteer][bffUrl].\n\nAs a [GitHub Action][actionsUrl]:\n\n```yml\nname: CI\non:\n  push:\n    branches:\n      - master\n  pull_request:\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v2\n      - name: Install\n        # NOTE: this pins the action to a specific commit sha for security\n        # reasons but you can also use a version tag if desired. For example:\n        # ianwalter/puppeteer-container@v4.0.0\n        uses: ianwalter/puppeteer-container@acc52cd2334ad9eaf6e1974562d263e0a711b7e8\n        with:\n          args: pnpm i\n      - name: Test\n        uses: ianwalter/puppeteer-container@acc52cd2334ad9eaf6e1974562d263e0a711b7e8\n        with:\n          args: pnpm t\n```\n\nAs a [Docker container][dockerUrl]:\n\n```console\ndocker pull ianwalter/puppeteer:v4.0.0\n```\n\n## Related\n\n* [`@ianwalter/bff`][bffUrl] - Your friendly test framework\n* [`ianwalter/playwright-container`][playwrightUrl] - A GitHub Action / Docker\n  image for Playwright, the browser automation library\n\n## License\n\nApache 2.0 with Commons Clause - See [LICENSE][licenseUrl]\n\n\u0026nbsp;\n\nCreated by [Ian Walter](https://ianwalter.dev)\n\n[buildkiteUrl]: https://github.com/buildkite/docker-puppeteer\n[troubleshootingUrl]: https://github.com/GoogleChrome/puppeteer/blob/main/docs/troubleshooting.md\n[actionsUrl]: https://github.com/features/actions\n[dockerUrl]: https://hub.docker.com/r/ianwalter/puppeteer\n[bffUrl]: https://github.com/ianwalter/bff\n[playwrightUrl]: https://github.com/ianwalter/playwright-container\n[licenseUrl]: https://github.com/ianwalter/puppeteer-container/blob/master/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianwalter%2Fpuppeteer-container","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fianwalter%2Fpuppeteer-container","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fianwalter%2Fpuppeteer-container/lists"}