CMVR-IOT-UI/Dockerfile

11 lines
78 B
Docker

FROM node:18
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .