Dockerfile Expose Example Guide

FROM nginx:latest

COPY package*.json ./ RUN npm install

docker run -p 127.0.0.1:8080:3000 myapp