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