File size: 119 Bytes
79b8443
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM node:latest
RUN apt update && apt upgrade -y
WORKDIR /app
COPY package.json .
RUN npm i
COPY . .
CMD ["node", "."]