remove fixed versions

This commit is contained in:
Sergey Dudoladov 2019-05-29 13:02:37 +02:00
parent b3a7ea4d26
commit de4fc79cc5
1 changed files with 14 additions and 14 deletions

View File

@ -4,25 +4,25 @@ LABEL maintainer="Team ACID @ Zalando <team-acid@zalando.de>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"] SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN apt-get update \ RUN apt-get update \
&& apt-get install --no-install-recommends -y \ && apt-get install --no-install-recommends -y \
apt-utils=1.6.10 \ apt-utils \
ca-certificates=20180409 \ ca-certificates \
lsb-release=9.20170808ubuntu1 \ lsb-release \
pigz=2.4-1 \ pigz \
python3-pip=9.0.1-2.3~ubuntu1 \ python3-pip \
python3-setuptools=39.0.1-2 \ python3-setuptools \
curl=7.58.0-2ubuntu3.7 \ curl \
jq=1.5+dfsg-2 \ jq \
gnupg=2.2.4-1ubuntu1.2 \ gnupg \
&& pip3 install --no-cache-dir awscli==1.14.44 --upgrade \ && pip3 install --no-cache-dir awscli --upgrade \
&& echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list \ && echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
&& cat /etc/apt/sources.list.d/pgdg.list \ && cat /etc/apt/sources.list.d/pgdg.list \
&& curl --silent https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \ && curl --silent https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& apt-get update \ && apt-get update \
&& apt-get install --no-install-recommends -y \ && apt-get install --no-install-recommends -y \
postgresql-client-11=11.3-1.pgdg18.04+1 \ postgresql-client-11 \
postgresql-client-10=10.8-1.pgdg18.04+1 \ postgresql-client-10 \
postgresql-client-9.6=9.6.13-1.pgdg18.04+1 \ postgresql-client-9.6 \
postgresql-client-9.5=9.5.17-1.pgdg18.04+1 \ postgresql-client-9.5 \
&& apt-get clean \ && apt-get clean \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*