FROM node:20-alpine WORKDIR /app #/ #COPY package*.json ./ #RUN npm install --production COPY . . # Merge the files before running RUN node index.js CMD ["node", "index.js"]