Skip to content

Commit 77784a3

Browse files
authored
Merge pull request #1 from yuuuxt/dev
add maintainer
2 parents f748257 + bafbf97 commit 77784a3

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

12/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ref: https://github.com/docker-library/postgres/issues/340
21
FROM postgres:12 AS extension_builder
32

43
# Already download extension code
@@ -17,11 +16,14 @@ RUN apt-get update && apt install build-essential libicu-dev postgresql-server-d
1716
RUN make clean && make install
1817

1918
FROM postgres:12
20-
#if use alpine: the paths are different!
19+
20+
LABEL maintainer="[email protected]"
2121

2222
# run find / -name 'sequential_uuids*' to find newly compiled files and copy to next stage
2323
COPY --from=extension_builder /usr/lib/postgresql/12/lib /usr/lib/postgresql/12/lib
2424
COPY --from=extension_builder /usr/share/postgresql/12/extension /usr/share/postgresql/12/extension
2525

26+
# ref: https://github.com/docker-library/postgres/issues/340
27+
2628
# after in sql:
2729
# CREATE EXTENSION sequential_uuids;

13/Dockerfile

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# ref: https://github.com/docker-library/postgres/issues/340
21
FROM postgres:13 AS extension_builder
32

43
# Already download extension code
@@ -17,11 +16,16 @@ RUN apt-get update && apt install build-essential libicu-dev postgresql-server-d
1716
RUN make clean && make install
1817

1918
FROM postgres:13
20-
#if use alpine: the paths are different!
19+
20+
LABEL maintainer="[email protected]"
2121

2222
# run find / -name 'sequential_uuids*' to find newly compiled files and copy to next stage
2323
COPY --from=extension_builder /usr/lib/postgresql/13/lib /usr/lib/postgresql/13/lib
2424
COPY --from=extension_builder /usr/share/postgresql/13/extension /usr/share/postgresql/13/extension
2525

26+
# ref: https://github.com/docker-library/postgres/issues/340
27+
2628
# after in sql:
2729
# CREATE EXTENSION sequential_uuids;
30+
31+

0 commit comments

Comments
 (0)