b6954a5 011ab1d b6954a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"]