You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# update "DEFAULT_PGSOCKET_DIR" to "/var/run/postgresql" (matching Debian)
78
83
# see https://anonscm.debian.org/git/pkg-postgresql/postgresql.git/tree/debian/patches/51-default-sockets-in-var.patch?id=8b539fcb3e093a521c095e70bdfa76887217b89f
@@ -94,6 +99,8 @@ RUN set -ex \
94
99
--with-pgport=5432 \
95
100
--with-system-tzdata=/usr/share/zoneinfo \
96
101
--prefix=/usr/local \
102
+
--with-includes=/usr/local/include \
103
+
--with-libraries=/usr/local/lib \
97
104
\
98
105
# these make our image abnormally large (at least 100MB larger), which seems uncouth for an "Alpine" (ie, "small") variant :)
# update "DEFAULT_PGSOCKET_DIR" to "/var/run/postgresql" (matching Debian)
78
83
# see https://anonscm.debian.org/git/pkg-postgresql/postgresql.git/tree/debian/patches/51-default-sockets-in-var.patch?id=8b539fcb3e093a521c095e70bdfa76887217b89f
@@ -94,6 +99,8 @@ RUN set -ex \
94
99
--with-pgport=5432 \
95
100
--with-system-tzdata=/usr/share/zoneinfo \
96
101
--prefix=/usr/local \
102
+
--with-includes=/usr/local/include \
103
+
--with-libraries=/usr/local/lib \
97
104
\
98
105
# these make our image abnormally large (at least 100MB larger), which seems uncouth for an "Alpine" (ie, "small") variant :)
Copy file name to clipboardExpand all lines: Dockerfile-alpine.template
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ RUN set -ex \
37
37
\
38
38
&& apk add --no-cache --virtual .build-deps \
39
39
bison \
40
+
coreutils \
40
41
flex \
41
42
gcc \
42
43
# krb5-dev \
@@ -55,7 +56,7 @@ RUN set -ex \
55
56
util-linux-dev \
56
57
zlib-dev \
57
58
\
58
-
%%INSTALL_OSSP_UUID%%
59
+
%%INSTALL_OSSP_UUID%%
59
60
&& cd /usr/src/postgresql \
60
61
# update "DEFAULT_PGSOCKET_DIR" to "/var/run/postgresql" (matching Debian)
61
62
# see https://anonscm.debian.org/git/pkg-postgresql/postgresql.git/tree/debian/patches/51-default-sockets-in-var.patch?id=8b539fcb3e093a521c095e70bdfa76887217b89f
@@ -78,6 +79,8 @@ RUN set -ex \
78
79
--with-pgport=5432 \
79
80
--with-system-tzdata=/usr/share/zoneinfo \
80
81
--prefix=/usr/local \
82
+
--with-includes=/usr/local/include \
83
+
--with-libraries=/usr/local/lib \
81
84
\
82
85
# these make our image abnormally large (at least 100MB larger), which seems uncouth for an "Alpine" (ie, "small") variant :)
0 commit comments