React js web app deployment in Docker Date: 22-02-2021 Step 1: Create a Dockerfile in the directory root with below content based on your deployment procedure. =====FROM node:12.2.0-alpine as react_build #also say WORKDIR /home/ubuntu/workspace/ #copy the react app to the container COPY . /home/ubuntu/workspace/ # #prepare the container for building… Continue Reading React js web app deployment in Docker