We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd02e2e commit 7577995Copy full SHA for 7577995
repo2docker/buildpacks/pipfile/__init__.py
@@ -88,7 +88,10 @@ def get_preassemble_scripts(self):
88
scripts = super().get_preassemble_scripts()
89
# install pipenv to install dependencies within Pipfile.lock or Pipfile
90
scripts.append(
91
- ("${NB_USER}", "${KERNEL_PYTHON_PREFIX}/bin/pip install pipenv==2018.11.26")
+ (
92
+ "${NB_USER}",
93
+ "${KERNEL_PYTHON_PREFIX}/bin/pip install --no-cache-dir pipenv==2018.11.26",
94
+ )
95
)
96
return scripts
97
tests/venv/postBuild/postBuild
@@ -1,3 +1,4 @@
1
#!/bin/bash
2
jupyter nbextension enable --py --sys-prefix ipyleaflet
3
-npm install --global configurable-http-proxy
+npm install --global configurable-http-proxy
4
+npm cache clean --force
0 commit comments