File size: 125 Bytes
3dd2bab
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM node:18-slim

WORKDIR /app

COPY frontend/package*.json ./
RUN npm install

COPY frontend/ ./

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