I’m trying to use jupyter from a custom docker image, but when I run it I get this error:
C:\Program Files\Docker\Docker\Resources\bin\docker.exe: Error response from daemon: container 342077588ddb51ca509982cece776c704701999530f4cc5519ec218d1461b1fe encountered an error during Start: failure in a Windows system call: The virtual machine or container exited unexpectedly. (0xc0370106).
The DOCKERFILE is as follows:
FROM python AS python-test
RUN pip install jupyter
RUN pip install numpy
RUN mkdir -p /notebooks
EXPOSE 8888
VOLUME E:/notebooks
#RUN ["jupyter notebook"]
OS: Windows 10