diff --git a/dw-cnpg/Dockerfile b/dw-cnpg/Dockerfile index 9e8d71a..1231ef8 100644 --- a/dw-cnpg/Dockerfile +++ b/dw-cnpg/Dockerfile @@ -35,11 +35,11 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* # Clone and build parquet_s3_fdw -RUN git clone https://github.com/pgspider/parquet_s3_fdw.git && \ - cd parquet_s3_fdw && \ - git checkout v1.1.0 && \ +RUN git clone https://github.com/tembo-io/tembo_parquet_s3_fdw.git && \ + cd tembo_parquet_s3_fdw && \ + git checkout v1.1.4 && \ make USE_PGXS=1 install && \ - cd .. && rm -rf parquet_s3_fdw + cd .. && rm -rf tembo_parquet_s3_fdw # cache all extensions RUN set -eux; \