In order to build the container image:
docker build -t vuejs-hw .
In order to run the container:
docker run -it --rm --name vuejs-hw -v$(pwd):/usr/project -p8080:8080 vuejs-hw
In order to exit container:
# either run command
exit
# or input EOF
Ctrl + D