File tree 2 files changed +10
-4
lines changed
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
- # ref: https://github.com/docker-library/postgres/issues/340
2
1
FROM postgres:12 AS extension_builder
3
2
4
3
# Already download extension code
@@ -17,11 +16,14 @@ RUN apt-get update && apt install build-essential libicu-dev postgresql-server-d
17
16
RUN make clean && make install
18
17
19
18
FROM postgres:12
20
- # if use alpine: the paths are different!
19
+
20
+ LABEL maintainer=
"[email protected] "
21
21
22
22
# run find / -name 'sequential_uuids*' to find newly compiled files and copy to next stage
23
23
COPY --from=extension_builder /usr/lib/postgresql/12/lib /usr/lib/postgresql/12/lib
24
24
COPY --from=extension_builder /usr/share/postgresql/12/extension /usr/share/postgresql/12/extension
25
25
26
+ # ref: https://github.com/docker-library/postgres/issues/340
27
+
26
28
# after in sql:
27
29
# CREATE EXTENSION sequential_uuids;
Original file line number Diff line number Diff line change 1
- # ref: https://github.com/docker-library/postgres/issues/340
2
1
FROM postgres:13 AS extension_builder
3
2
4
3
# Already download extension code
@@ -17,11 +16,16 @@ RUN apt-get update && apt install build-essential libicu-dev postgresql-server-d
17
16
RUN make clean && make install
18
17
19
18
FROM postgres:13
20
- # if use alpine: the paths are different!
19
+
20
+ LABEL maintainer=
"[email protected] "
21
21
22
22
# run find / -name 'sequential_uuids*' to find newly compiled files and copy to next stage
23
23
COPY --from=extension_builder /usr/lib/postgresql/13/lib /usr/lib/postgresql/13/lib
24
24
COPY --from=extension_builder /usr/share/postgresql/13/extension /usr/share/postgresql/13/extension
25
25
26
+ # ref: https://github.com/docker-library/postgres/issues/340
27
+
26
28
# after in sql:
27
29
# CREATE EXTENSION sequential_uuids;
30
+
31
+
You can’t perform that action at this time.
0 commit comments