File size: 83 Bytes
82a127c
 
 
 
 
 
25d702c
 
82a127c
1
2
3
4
5
6
7
8
9
10
FROM node:18

COPY . /app

WORKDIR /app

RUN npm install

CMD ["node", "index.js"]