Skip to content

Commit 9586595

Browse files
authored
Merge pull request #742 from J0WI/alpine-3.12
Upgrade Alpine to 3.12
2 parents 9c5ca99 + b1f60bd commit 9586595

File tree

8 files changed

+18
-18
lines changed

8 files changed

+18
-18
lines changed

10/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# vim:set ft=dockerfile:
2-
FROM alpine:3.11
2+
FROM alpine:3.12
33

44
# 70 is the standard uid/gid for "postgres" in Alpine
5-
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.11-stable
5+
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
66
RUN set -eux; \
77
addgroup -g 70 -S postgres; \
88
adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \

11/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# vim:set ft=dockerfile:
2-
FROM alpine:3.11
2+
FROM alpine:3.12
33

44
# 70 is the standard uid/gid for "postgres" in Alpine
5-
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.11-stable
5+
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
66
RUN set -eux; \
77
addgroup -g 70 -S postgres; \
88
adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \
@@ -50,7 +50,7 @@ RUN set -ex \
5050
libxml2-dev \
5151
libxslt-dev \
5252
linux-headers \
53-
llvm9-dev clang g++ \
53+
llvm10-dev clang g++ \
5454
make \
5555
# openldap-dev \
5656
openssl-dev \

12/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# vim:set ft=dockerfile:
2-
FROM alpine:3.11
2+
FROM alpine:3.12
33

44
# 70 is the standard uid/gid for "postgres" in Alpine
5-
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.11-stable
5+
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
66
RUN set -eux; \
77
addgroup -g 70 -S postgres; \
88
adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \
@@ -50,7 +50,7 @@ RUN set -ex \
5050
libxml2-dev \
5151
libxslt-dev \
5252
linux-headers \
53-
llvm9-dev clang g++ \
53+
llvm10-dev clang g++ \
5454
make \
5555
# openldap-dev \
5656
openssl-dev \

13/alpine/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# vim:set ft=dockerfile:
2-
FROM alpine:3.11
2+
FROM alpine:3.12
33

44
# 70 is the standard uid/gid for "postgres" in Alpine
5-
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.11-stable
5+
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
66
RUN set -eux; \
77
addgroup -g 70 -S postgres; \
88
adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \
@@ -50,7 +50,7 @@ RUN set -ex \
5050
libxml2-dev \
5151
libxslt-dev \
5252
linux-headers \
53-
llvm9-dev clang g++ \
53+
llvm10-dev clang g++ \
5454
make \
5555
# openldap-dev \
5656
openssl-dev \

9.5/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# vim:set ft=dockerfile:
2-
FROM alpine:3.11
2+
FROM alpine:3.12
33

44
# 70 is the standard uid/gid for "postgres" in Alpine
5-
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.11-stable
5+
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
66
RUN set -eux; \
77
addgroup -g 70 -S postgres; \
88
adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \

9.6/alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# vim:set ft=dockerfile:
2-
FROM alpine:3.11
2+
FROM alpine:3.12
33

44
# 70 is the standard uid/gid for "postgres" in Alpine
5-
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.11-stable
5+
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
66
RUN set -eux; \
77
addgroup -g 70 -S postgres; \
88
adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \

Dockerfile-alpine.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM alpine:%%ALPINE-VERSION%%
33

44
# 70 is the standard uid/gid for "postgres" in Alpine
5-
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.11-stable
5+
# https://git.alpinelinux.org/aports/tree/main/postgresql/postgresql.pre-install?h=3.12-stable
66
RUN set -eux; \
77
addgroup -g 70 -S postgres; \
88
adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; \
@@ -50,7 +50,7 @@ RUN set -ex \
5050
libxml2-dev \
5151
libxslt-dev \
5252
linux-headers \
53-
llvm9-dev clang g++ \
53+
llvm10-dev clang g++ \
5454
make \
5555
# openldap-dev \
5656
openssl-dev \

update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ declare -A debianSuite=(
1818
[10]='stretch-slim'
1919
[11]='stretch-slim'
2020
)
21-
defaultAlpineVersion='3.11'
21+
defaultAlpineVersion='3.12'
2222
declare -A alpineVersion=(
2323
#[9.6]='3.5'
2424
)

0 commit comments

Comments
 (0)