Skip to content
Snippets Groups Projects
Commit 67747750 authored by Erick Hitter's avatar Erick Hitter
Browse files

Fix pip cleanup

parent a6eb5f1a
No related branches found
No related tags found
1 merge request!1MVP
Pipeline #1828 passed
ignored: ignored:
- DL3008 - DL3008
- DL3013
...@@ -6,12 +6,11 @@ LABEL version="1.0" ...@@ -6,12 +6,11 @@ LABEL version="1.0"
RUN echo "deb http://security.debian.org/ buster/updates main" >> /etc/apt/sources.list RUN echo "deb http://security.debian.org/ buster/updates main" >> /etc/apt/sources.list
RUN apt-get update \ RUN apt-get update \
&& apt-get -y --no-install-recommends install \ && apt-get -y --no-install-recommends install python-pip \
python-pip \
&& pip install setuptools \ && pip install setuptools \
&& pip install s3cmd \ && pip install s3cmd \
&& s3cmd --version \ && s3cmd --version \
&& pip uninstall setuptools \ && pip uninstall -y setuptools \
&& apt-get remove -y python-pip \ && apt-get remove -y python-pip \
&& apt-get autoremove -y \ && apt-get autoremove -y \
&& apt-get clean \ && apt-get clean \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment