File size: 87 Bytes
11990d1
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM node:16-alpine

WORKDIR /app

COPY . .

RUN npm install

CMD ["npm", "run", "dev"]