I will try to help you here in this answer - too long for comments.
I tried my Docker file on my Win10 and with the same problems. But I realized this by adding the necessary packages and a successfully created docker image. Here is the dockerfile
FROM node:slim COPY . /usr/scr/app
and here is your start.sh
Actually, I donβt have access to your files, etc., but with this DockerFile I managed to create a docker image without any problems. I also went into the docker container and checked if it was possible to work electronically.
If you want to enter the container, you just need to build a docker image. I executed this (in the simplest way) the following command ( open the console where the Dockerfile is located ):
docker build -t test-image .
After successfully assembling the image, you can start the container. If you encounter any problems, I recommend that you start the container with the bash entry point and debug what failed - bash will open in the same console where you type the following script)
docker run -it test-image bash
source share