Skip to content

Commit 036b04f

Browse files
committed
Use bookworm as base where available
1 parent 9441416 commit 036b04f

File tree

21 files changed

+46
-46
lines changed

21 files changed

+46
-46
lines changed

10-to-11/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:11-bullseye
1+
FROM postgres:11-bookworm
22

33
RUN sed -i 's/$/ 10/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-10=10.23-2.pgdg110+1 \
6+
postgresql-10=10.23-2.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/10/bin

10-to-12/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:12-bullseye
1+
FROM postgres:12-bookworm
22

33
RUN sed -i 's/$/ 10/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-10=10.23-2.pgdg110+1 \
6+
postgresql-10=10.23-2.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/10/bin

10-to-13/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:13-bullseye
1+
FROM postgres:13-bookworm
22

33
RUN sed -i 's/$/ 10/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-10=10.23-2.pgdg110+1 \
6+
postgresql-10=10.23-2.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/10/bin

10-to-14/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:14-bullseye
1+
FROM postgres:14-bookworm
22

33
RUN sed -i 's/$/ 10/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-10=10.23-2.pgdg110+1 \
6+
postgresql-10=10.23-2.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/10/bin

10-to-15/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:15-bullseye
1+
FROM postgres:15-bookworm
22

33
RUN sed -i 's/$/ 10/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-10=10.23-2.pgdg110+1 \
6+
postgresql-10=10.23-2.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/10/bin

11-to-12/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:12-bullseye
1+
FROM postgres:12-bookworm
22

33
RUN sed -i 's/$/ 11/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-11=11.21-1.pgdg110+1 \
6+
postgresql-11=11.21-1.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/11/bin

11-to-13/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:13-bullseye
1+
FROM postgres:13-bookworm
22

33
RUN sed -i 's/$/ 11/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-11=11.21-1.pgdg110+1 \
6+
postgresql-11=11.21-1.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/11/bin

11-to-14/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:14-bullseye
1+
FROM postgres:14-bookworm
22

33
RUN sed -i 's/$/ 11/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-11=11.21-1.pgdg110+1 \
6+
postgresql-11=11.21-1.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/11/bin

11-to-15/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:15-bullseye
1+
FROM postgres:15-bookworm
22

33
RUN sed -i 's/$/ 11/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-11=11.21-1.pgdg110+1 \
6+
postgresql-11=11.21-1.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/11/bin

12-to-13/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM postgres:13-bullseye
1+
FROM postgres:13-bookworm
22

33
RUN sed -i 's/$/ 12/' /etc/apt/sources.list.d/pgdg.list
44

55
RUN apt-get update && apt-get install -y --no-install-recommends \
6-
postgresql-12=12.16-1.pgdg110+1 \
6+
postgresql-12=12.16-1.pgdg120+1 \
77
&& rm -rf /var/lib/apt/lists/*
88

99
ENV PGBINOLD /usr/lib/postgresql/12/bin

0 commit comments

Comments
 (0)