File size: 95 Bytes
d60b4e5
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
FROM node:18-alpine

COPY . /app 
WORKDIR /app 
EXPOSE 8080

RUN npm install;
CMD node index.js