1/ Download the Dockerfile, that contains the instructions to build the container 2/ Copy the file in the /tmp/ directory ` cp Dockerfile /tmp/ ` 3/ Connect as a docker user ` dockersh ` 4/ As a docker user, build the container ``` cd /tmp mkdir docker_build cp Dockerfile docker_build cd docker_build docker build -t fairness . ``` 5/ As a docker user, run the container `docker run -it -p 8888:8888 -d fairness` 6/ Then on your VSCode you can select as existing Jupyter Server 'http://localost:8888' with password 'fairness'