You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Use one RUN command to reduce the number of layers.
33
+
ARG py_version
33
34
RUN \
34
35
# Install native bindings required for dependencies.
35
36
apt-get update && \
@@ -80,7 +81,15 @@ RUN \
80
81
pip freeze --all && \
81
82
82
83
# Remove pip cache.
83
-
rm -rf /root/.cache/pip
84
+
rm -rf /root/.cache/pip && \
85
+
86
+
# Update ensurepip to use most recent versions of setuptools and pip. This avoids some vulnerabilities which won't be fixed on older versions of python.
0 commit comments