diff --git a/.hadolint.yaml b/.hadolint.yaml index 8f7e23e459df52ebbd66d768be22912a79d80eca..5bc0e7f57745ede322dc76ffb4e1077335f06d97 100644 --- a/.hadolint.yaml +++ b/.hadolint.yaml @@ -1,2 +1,3 @@ ignored: - DL3008 + - DL3013 diff --git a/context/Dockerfile b/context/Dockerfile index bd1cf070fee21da1c7aed2cc9c42b2e8dc5b4a44..bc8c7005193603887726ae04012b67a57fc0aaa1 100644 --- a/context/Dockerfile +++ b/context/Dockerfile @@ -6,12 +6,11 @@ LABEL version="1.0" RUN echo "deb http://security.debian.org/ buster/updates main" >> /etc/apt/sources.list RUN apt-get update \ - && apt-get -y --no-install-recommends install \ - python-pip \ + && apt-get -y --no-install-recommends install python-pip \ && pip install setuptools \ && pip install s3cmd \ && s3cmd --version \ - && pip uninstall setuptools \ + && pip uninstall -y setuptools \ && apt-get remove -y python-pip \ && apt-get autoremove -y \ && apt-get clean \