https://github.com/satantime/puppeteer-node
Preinstalled dependencies for puppeteer
https://github.com/satantime/puppeteer-node
Last synced: about 1 year ago
JSON representation
Preinstalled dependencies for puppeteer
- Host: GitHub
- URL: https://github.com/satantime/puppeteer-node
- Owner: satanTime
- License: apache-2.0
- Created: 2019-11-22T10:19:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-12T12:49:46.000Z (about 1 year ago)
- Last Synced: 2025-04-12T13:55:12.102Z (about 1 year ago)
- Language: Roff
- Homepage: https://hub.docker.com/r/satantime/puppeteer-node
- Size: 45.7 MB
- Stars: 24
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Puppeteer Node for CI
The motivation of this repo is to provide all versions of [nodejs images](https://hub.docker.com/_/node) with a single layer on top
that contains only dependencies for [puppeteer](https://pptr.dev).
Therefore, which [puppeteer](https://pptr.dev) to install and to use is up to you, it is just one line of code.
[`satantime/puppeteer-node` images](https://hub.docker.com/r/satantime/puppeteer-node) do not contain [puppeteer](https://pptr.dev) itself,
because different versions of different libraries, such as [webdriver](https://webdriver.io), might require
specific versions of [Chrome Browser](https://www.chromium.org/Home/).
This makes tough providing images for all possible combinations.
## Example
For example, if you want to use [puppeteer](https://pptr.dev) with `node` `v20.9.0` on `bookworm`, which means base image is `node:20.9.0-bookworm`, then you only need to replace `node` with `satantime/puppeteer-node`:
#### Dockerfile
```Dockerfile
FROM satantime/puppeteer-node:20.9.0-bookworm
```
#### compose.yml
```yaml
services:
service-name:
image: satantime/puppeteer-node:20.9.0-bookworm
```
## Warnings
- no alpine images
- should you not find node version you want, please open [an issue on GitHub](https://github.com/satanTime/puppeteer-node/issues/new)
## Testing Angular
Documentation how to configure continuous integration for Angular applications is on [https://satantime.github.io/puppeteer-node/](https://satantime.github.io/puppeteer-node/).