Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pg14.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ RUN apk add --no-cache \
cmake \
openssl-dev \
krb5-dev \
# required for timescaledb
# needed for the uuid-ossp extension
ossp-uuid-dev \
# required for timescaledb
linux-headers

RUN git clone --depth 1 --branch ${PG_BRANCH} https://github.com/postgres/postgres.git /postgres
Expand All @@ -31,6 +33,7 @@ RUN git apply /tmp/*.patch

# Build PostgreSQL with debug flags
RUN ./configure \
--with-uuid=ossp \
--without-icu \
--with-openssl \
--prefix=/usr/local/pgsql
Expand Down Expand Up @@ -108,6 +111,7 @@ RUN apk add -uU --no-cache \
bash \
su-exec \
openssl \
ossp-uuid-dev \
postgresql-client \
krb5

Expand Down
1 change: 1 addition & 0 deletions src/sync/schema-link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,7 @@ export class RestoreCommand {
"--no-owner",
"--no-acl",
"--verbose",
"--disable-triggers",
...RestoreCommand.formatFlags(),
"--dbname",
connectable.toString(),
Expand Down