Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 548 Bytes

File metadata and controls

27 lines (19 loc) · 548 Bytes

karin-docker

Build the base image:

docker build -f base.Dockerfile -t karinjs/karin:base .

Build the Puppeteer image on top of the base image:

docker build -f puppetter.Dockerfile -t karinjs/karin:puppetter .

Use a different base image tag when needed:

docker build -f puppetter.Dockerfile \
  --build-arg BASE_IMAGE=my-karin:base \
  -t my-karin:puppetter .

Install extra plugin dependencies at container startup:

docker run karinjs/karin:latest --plugin @scope/plugin-a --plugin plugin-b