File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
# ref: https://github.com/docker-library/postgres/issues/340
2
- FROM postgres:13 AS extension_builder
2
+ FROM postgres:12 AS extension_builder
3
3
4
4
# Already download extension code
5
5
RUN cd / && mkdir external_extensions && mkdir /external_extensions/sequential-uuids
@@ -20,8 +20,8 @@ FROM postgres:13
20
20
# if use alpine: the paths are different!
21
21
22
22
# run find / -name 'sequential_uuids*' to find newly compiled files and copy to next stage
23
- COPY --from=extension_builder /usr/lib/postgresql/13 /lib /usr/lib/postgresql/13 /lib
24
- COPY --from=extension_builder /usr/share/postgresql/13 /extension /usr/share/postgresql/13 /extension
23
+ COPY --from=extension_builder /usr/lib/postgresql/12 /lib /usr/lib/postgresql/12 /lib
24
+ COPY --from=extension_builder /usr/share/postgresql/12 /extension /usr/share/postgresql/12 /extension
25
25
26
26
# after in sql:
27
27
# CREATE EXTENSION sequential_uuids;
You can’t perform that action at this time.
0 commit comments