FROM node:14 WORKDIR /app COPY package.json . COPY app.js . RUN npm install EXPOSE 8080 CMD [ "node", "app.js" ]