Docker image for build React.js apps with react-boilerplate.
2.2K
This image can be used for build applications created with react-boilerplate
docker run -ti -v "$PWD":/app react-boilerplate sh -c "npm install"
docker run -ti -v "$PWD":/app react-boilerplate sh -c "npm test"
docker run -ti -v "$PWD":/app react-boilerplate sh -c "npm run build"
version: '3'
services:
build_app:
image: prihlop/react-boilerplate
volumes:
- ./path-to-app:/app
command: sh -c "npm install; npm test; npm run build"
Dicker image for build React.js apps with react-boilerplate. More info by link https://www.reactboilerplate.com/
Content type
Image
Digest
Size
114.5 MB
Last updated
over 5 years ago
docker pull prihlop/react-boilerplate