Skip to content

Commit

Permalink
Add multi-version psql files
Browse files Browse the repository at this point in the history
  • Loading branch information
martin31821 committed Nov 17, 2022
1 parent ca64db4 commit 8e84327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ARG MINIO_VERSION="mc.RELEASE.2022-10-29T10-09-23Z"
ARG AWS_CLI_VER="2.8.8"

# Setting DEBIAN_FRONTEND=noninteractive causes tzdata to assume UTC, which is exactly what we want
RUN export DEBIAN_FRONTEND=noninteractive && apt update && apt install -y --no-install-recommends ca-certificates postgresql-client-14 mariadb-client bash tar influxdb curl jq openssh-client unzip tzdata && rm -rf /var/lib/apt/lists/*
RUN export DEBIAN_FRONTEND=noninteractive && apt update && apt install -y --no-install-recommends ca-certificates mariadb-client bash tar influxdb curl jq openssh-client unzip tzdata && echo "deb http://apt.postgresql.org/pub/repos/apt jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list && curl https://www.postgresql.org/media/keys/ACCC4CF8.asc > /etc/apt/trusted.gpg.d/pgdg.asc && apt update && apt install -y --no-install-recommends postgresql-client-13 postgresql-client-14 postgresql-client-15 postgresql-client-12 && rm -rf /var/lib/apt/lists/*

# Download minio
RUN curl https://dl.min.io/client/mc/release/linux-amd64/$MINIO_VERSION > /usr/bin/mc && chmod +x /usr/bin/mc
Expand Down

0 comments on commit 8e84327

Please sign in to comment.