1 2 3 4 5
FROM node:18-alpine WORKDIR /app COPY . . RUN npm install express --save CMD ["node", "index.js"]