Typescript environment with Vite on Nodejs 24.8 HOWTO Build the image using node.docker dockerfile docker build -t ts-env -f node.docker . Run the container in detached mode docker run -dt --publish 5173:5173 --name typescript -v ./src/:/workspace/ ts-env:latest Open the container in interactive mode docker exec -it typescript bash Quick start Run commands to enter to the typescript container docker build -t ts-env -f node.docker . docker run -dt --publish 5173:5173 --name typescript -v ./src/:/workspace/ ts-env:latest docker exec -it typescript bash