npm install
npm run serve
npm run build
npm run test:unit
npm run lint
[unit test](https://github.com/nidhi-canopas/vue3-component-test-example)
docker build -t my-vue-app .
docker run -p 8080:80 my-vue-app
docker-compose up -d
This command will run the container, mapping port 8080 on your host to port 80 in the container. Your Vue.js app should now be accessible at http://localhost:8080.