From the frontend folder:
Install all necessary dependencies:
Start the app in development mode:
If you want to run linter for the project:
Automatically fix small mistakes:
From frontend folder:
docker build -t frontend:dev .
Run image as container:
docker run -it -v ${PWD}:/app -v /app/node_modules -p 3001:3000 -e CHOKIDAR_USEPOLLING=true frontend:dev
The application is now available from the docker default ip on port 3001.