docker-science / cookiecutter-docker-science

Cookiecutter template for data scientists working with Docker containers
https://docker-science.github.io/
Apache License 2.0
349 stars 80 forks source link

Fixbug when sudo is used in make create-container #66

Closed himkt closed 6 years ago

himkt commented 6 years ago

If we execute sudo make create-container, PWD is empty. This causes that we cannot copy contents of repository to the docker instance. So I explicitly declare the PWD variable with the below command.

PWD=pwd

takahi-i commented 6 years ago

@himkt Thank you very much for the valuable contribution!