kopia lustrzana https://github.com/jupyterhub/repo2docker
Succeed even if no requirements.txt is present
Will just get default jupyter installation + venvpull/6/head
rodzic
90b8c3d601
commit
66a79d2aa6
|
@ -23,4 +23,6 @@ echo "---> Installing application source..."
|
||||||
cp -Rf /tmp/src/. ./
|
cp -Rf /tmp/src/. ./
|
||||||
|
|
||||||
echo "---> Building application from source..."
|
echo "---> Building application from source..."
|
||||||
${APP_DIR}/venv/bin/pip install --no-cache-dir -r requirements.txt
|
if [ -f requirements.txt ]; then
|
||||||
|
${APP_DIR}/venv/bin/pip install --no-cache-dir -r requirements.txt
|
||||||
|
fi
|
||||||
|
|
Ładowanie…
Reference in New Issue