Spring Boot Webpack Table of Contents Running with Docker Sample application with Spring Boot backend and React front end. Front end is bundled using Webpack. Running with Docker Start by building the app. ./mvnw clean install Next build the Docker image. cd target && docker build -t my-image . Finally run the app. docker run -d -p 3000:3000 --name my-app my-image