8000 chore: copy extension files for Docker builds (#425) · supabase/postgres@0146340 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0146340

Browse files
authored
chore: copy extension files for Docker builds (#425)
* chore: copy extension files for Docker builds * chore: cleanup; additionally bump version
1 parent 3e402be commit 0146340

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

ansible/tasks/docker/finalize.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,16 @@
2222
mode: '0774'
2323
with_items:
2424
- /etc/postgresql-custom
25+
26+
# TODO(pcnc): remove these when install locations are fixed for Docker builds
27+
- name: copy Supabase extension libs
28+
become: yes
29+
copy:
30+
src: /usr/lib/postgresql/lib/
31+
dest: /usr/lib/postgresql/{{ postgresql_major }}/lib/
32+
33+
- name: copy Supabase extension files
34+
become: yes
35+
copy:
36+
src: /var/lib/postgresql/extension/
37+
dest: /usr/share/postgresql/{{ postgresql_major }}/extension/

common.vars.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "15.1.0.3-rc3"
1+
postgres-version = "15.1.0.10-rc1"

0 commit comments

Comments
 (0)
0