Docker – nginx , nodejs

Dockerfile

FROM node:alpine
WORKDIR /app
ADD . /app
RUN npm install

EXPOSE 3000
CMD ["npm","start"]