Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 821 Bytes

File metadata and controls

39 lines (26 loc) · 821 Bytes

Docker-Chrome-Node

Dockerfile for https://hub.docker.com/r/reacteev/chromium-node.

The image has:

  • node
  • chromium

Getting Started

docker run -it --rm --volume "$(pwd):/app" reacteev/chromium-node:latest /bin/sh

Contributing

Tag with Git the versions of Node and Chromium, like node-22.22.1-alpine_chromium-146.0.7680.153.

Build the image

docker build \
  --tag reacteev/chromium-node:latest \
  --tag reacteev/chromium-node:$(git describe --tag) \
  .

Publish the image

docker login
docker push reacteev/chromium-node:latest
docker push reacteev/chromium-node:$(git describe --tag)

Todo