Skip to content

Commit 7601fcd

Browse files
authored
Merge pull request #1 from docker-library/master
Catch up with upstream
2 parents 0aff40c + 73f9262 commit 7601fcd

File tree

14 files changed

+40
-40
lines changed

14 files changed

+40
-40
lines changed

10/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN set -x \
2828
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
2929
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
3030
&& export GNUPGHOME="$(mktemp -d)" \
31-
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
31+
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
3232
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
3333
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3434
&& rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc \
@@ -64,14 +64,14 @@ RUN set -ex; \
6464
# uid PostgreSQL Debian Repository
6565
key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; \
6666
export GNUPGHOME="$(mktemp -d)"; \
67-
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68-
gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
67+
gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68+
gpg --batch --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
6969
command -v gpgconf > /dev/null && gpgconf --kill all; \
7070
rm -rf "$GNUPGHOME"; \
7171
apt-key list
7272

7373
ENV PG_MAJOR 10
74-
ENV PG_VERSION 10.5-1.pgdg90+1
74+
ENV PG_VERSION 10.6-1.pgdg90+1
7575

7676
RUN set -ex; \
7777
\

10/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ ENV LANG en_US.utf8
2222
RUN mkdir /docker-entrypoint-initdb.d
2323

2424
ENV PG_MAJOR 10
25-
ENV PG_VERSION 10.5
26-
ENV PG_SHA256 6c8e616c91a45142b85c0aeb1f29ebba4a361309e86469e0fb4617b6a73c4011
25+
ENV PG_VERSION 10.6
26+
ENV PG_SHA256 68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2727

2828
RUN set -ex \
2929
\

11/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN set -x \
2828
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
2929
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
3030
&& export GNUPGHOME="$(mktemp -d)" \
31-
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
31+
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
3232
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
3333
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3434
&& rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc \
@@ -64,14 +64,14 @@ RUN set -ex; \
6464
# uid PostgreSQL Debian Repository
6565
key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; \
6666
export GNUPGHOME="$(mktemp -d)"; \
67-
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68-
gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
67+
gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68+
gpg --batch --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
6969
command -v gpgconf > /dev/null && gpgconf --kill all; \
7070
rm -rf "$GNUPGHOME"; \
7171
apt-key list
7272

7373
ENV PG_MAJOR 11
74-
ENV PG_VERSION 11~beta3-1.pgdg90+2
74+
ENV PG_VERSION 11.1-1.pgdg90+1
7575

7676
RUN set -ex; \
7777
\

11/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ ENV LANG en_US.utf8
2222
RUN mkdir /docker-entrypoint-initdb.d
2323

2424
ENV PG_MAJOR 11
25-
ENV PG_VERSION 11beta3
26-
ENV PG_SHA256 82babba086ea7297d78f3ce2298296cd22fc1bb10ba315e8b4ff661658a8044d
25+
ENV PG_VERSION 11.1
26+
ENV PG_SHA256 90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08
2727

2828
RUN set -ex \
2929
\

9.3/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN set -x \
2828
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
2929
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
3030
&& export GNUPGHOME="$(mktemp -d)" \
31-
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
31+
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
3232
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
3333
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3434
&& rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc \
@@ -64,14 +64,14 @@ RUN set -ex; \
6464
# uid PostgreSQL Debian Repository
6565
key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; \
6666
export GNUPGHOME="$(mktemp -d)"; \
67-
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68-
gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
67+
gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68+
gpg --batch --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
6969
command -v gpgconf > /dev/null && gpgconf --kill all; \
7070
rm -rf "$GNUPGHOME"; \
7171
apt-key list
7272

7373
ENV PG_MAJOR 9.3
74-
ENV PG_VERSION 9.3.24-1.pgdg90+1
74+
ENV PG_VERSION 9.3.25-1.pgdg90+1
7575

7676
RUN set -ex; \
7777
\

9.3/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ ENV LANG en_US.utf8
2222
RUN mkdir /docker-entrypoint-initdb.d
2323

2424
ENV PG_MAJOR 9.3
25-
ENV PG_VERSION 9.3.24
26-
ENV PG_SHA256 8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9
25+
ENV PG_VERSION 9.3.25
26+
ENV PG_SHA256 e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
2727

2828
ENV OSSP_UUID_VERSION 1.6.2
2929
ENV OSSP_UUID_SHA256 11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

9.4/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN set -x \
2828
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
2929
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
3030
&& export GNUPGHOME="$(mktemp -d)" \
31-
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
31+
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
3232
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
3333
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3434
&& rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc \
@@ -64,14 +64,14 @@ RUN set -ex; \
6464
# uid PostgreSQL Debian Repository
6565
key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; \
6666
export GNUPGHOME="$(mktemp -d)"; \
67-
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68-
gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
67+
gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68+
gpg --batch --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
6969
command -v gpgconf > /dev/null && gpgconf --kill all; \
7070
rm -rf "$GNUPGHOME"; \
7171
apt-key list
7272

7373
ENV PG_MAJOR 9.4
74-
ENV PG_VERSION 9.4.19-1.pgdg90+1
74+
ENV PG_VERSION 9.4.20-1.pgdg90+1
7575

7676
RUN set -ex; \
7777
\

9.4/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ ENV LANG en_US.utf8
2222
RUN mkdir /docker-entrypoint-initdb.d
2323

2424
ENV PG_MAJOR 9.4
25-
ENV PG_VERSION 9.4.19
26-
ENV PG_SHA256 03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b
25+
ENV PG_VERSION 9.4.20
26+
ENV PG_SHA256 eeb1d8ddb2854c9e4d8b5cbd65665260c0ae8cbcb911003f24c2d82ccb97f87f
2727

2828
RUN set -ex \
2929
\

9.5/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN set -x \
2828
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
2929
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
3030
&& export GNUPGHOME="$(mktemp -d)" \
31-
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
31+
&& gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
3232
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
3333
&& { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \
3434
&& rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc \
@@ -64,14 +64,14 @@ RUN set -ex; \
6464
# uid PostgreSQL Debian Repository
6565
key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; \
6666
export GNUPGHOME="$(mktemp -d)"; \
67-
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68-
gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
67+
gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
68+
gpg --batch --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; \
6969
command -v gpgconf > /dev/null && gpgconf --kill all; \
7070
rm -rf "$GNUPGHOME"; \
7171
apt-key list
7272

7373
ENV PG_MAJOR 9.5
74-
ENV PG_VERSION 9.5.14-1.pgdg90+1
74+
ENV PG_VERSION 9.5.15-1.pgdg90+1
7575

7676
RUN set -ex; \
7777
\

9.5/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ ENV LANG en_US.utf8
2222
RUN mkdir /docker-entrypoint-initdb.d
2323

2424
ENV PG_MAJOR 9.5
25-
ENV PG_VERSION 9.5.14
26-
ENV PG_SHA256 3e2cd5ea0117431f72c9917c1bbad578ea68732cb284d1691f37356ca0301a4d
25+
ENV PG_VERSION 9.5.15
26+
ENV PG_SHA256 dbda3fdefd7f9fd5359a7989085aaef25c9f9d08816eda6378c2575d1ff55444
2727

2828
RUN set -ex \
2929
\

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy