FROM node:12-alpine * to be based on which other Docker image?RUN apk add --no-cache python g++ make * install additional softwareWORKDIR /app * create and use directory /app inside the containerCOPY . . * 1st parameter: local directory (./ is the directory where the Dockerfile is) * 2nd parameter:target directory inside the container * β copy everything where the Dockerfile is in, into the container under /appRUN npm install * dependencies for the applicationCMD ["node", "src/index.js"] * run the app - just like when running outside a container