f7ae361
1
2
3
4
5
6
7
8
9
10
FROM node:22-alpine WORKDIR iatalking RUN npm i express COPY ./server.js ./server.js CMD ["node","./server.js"]