network_inventory/frontend/Dockerfile-dev
Andreas Zweili 37076ab726 move from vite to vue-cli
works better together with the course I'm currently taking.
2021-01-26 22:33:19 +01:00

12 lines
130 B
Plaintext

FROM node:latest
WORKDIR /usr/src/app/frontend
COPY package*.json ./
RUN npm install
EXPOSE 3000
CMD ["npm", "run", "serve"]