kou commented on issue #193:
URL: 
https://github.com/apache/arrow-flight-sql-postgresql/issues/193#issuecomment-2570553524

   Could you try the following for PostgreSQL 15 + 0.1.0?
   
   ```dockerfile
   FROM ubuntu:22.04
   
   ENV DEBIAN_FRONTEND=noninteractive
   
   RUN apt update
   RUN apt install -y ca-certificates gpg lsb-release wget
   
   # Enable the PostgreSQL APT repository
   RUN wget -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | gpg 
--no-default-keyring --keyring /usr/share/keyrings/pgdg.gpg --import -
   RUN tee /etc/apt/sources.list.d/pgdg.sources <<EOF
   Types: deb
   URIs: http://apt.postgresql.org/pub/repos/apt
   Suites: $(lsb_release --codename --short)-pgdg
   Components: main
   Signed-By: /usr/share/keyrings/pgdg.gpg
   EOF
   
   # Enable the Apache Arrow APT repository
   RUN wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id 
--short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release 
--codename --short).deb
   RUN apt install -y -V ./apache-arrow-apt-source-latest-$(lsb_release 
--codename --short).deb
   RUN rm apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb
   RUN apt update
   
   # Install postgresql-15-pgdg-apache-arrow-flight-sql
   RUN apt install -y postgresql-15-pgdg-apache-arrow-flight-sql
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to