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 94a5460 commit acee11aCopy full SHA for acee11a
python/datascience/Dockerfile.datascience
@@ -25,3 +25,7 @@ RUN apt-get update \
25
&& apt-get clean \
26
&& rm -rf /var/lib/apt/lists/* /root/.cache
27
28
+# We create the virtual environment in the home directory in the Dockerfile
29
+# for performance improvement.
30
+RUN python -m venv --system-site-packages ~/venv
31
+RUN . ~/venv/bin/activate && pip install --upgrade pip setuptools
0 commit comments