https://github.com/nvm-sh/nvm#installing-and-updatingnvm usecorepack enable && corepack preparecorepack pnpm i # If you don't have pnpm installed, run: corepack enableJust run and visit http://localhost:3333
pnpm devTo build the App, run
pnpm buildAnd you will see the generated file in dist that ready to be served.
pnpm test:unitFirst, build the webapp image by opening the terminal in the project's root directory.
docker buildx build . -t webapp:latestRun the image and specify port mapping with the -p flag.
docker run --rm -it -p 8080:80 webapp:latest