diff --git a/docker/production/postgres/Dockerfile b/docker/production/postgres/Dockerfile index 6b6681916..922cfadb4 100644 --- a/docker/production/postgres/Dockerfile +++ b/docker/production/postgres/Dockerfile @@ -1,8 +1,8 @@ -FROM postgres:14.2 +FROM postgres:16 -RUN buildDeps='git make gcc postgresql-server-dev-14' \ - && apt update && apt install -y $buildDeps --no-install-recommends --reinstall ca-certificates \ - && git clone https://github.com/fake-name/pg-spgist_hamming.git \ +RUN buildDeps='git make gcc postgresql-server-dev-16' \ + && apt update && apt install -y $buildDeps --no-install-recommends --reinstall ca-certificates clang llvm-dev \ + && git clone https://github.com/elkorol/pg-spgist_hamming.git \ && make -C pg-spgist_hamming/bktree \ && make -C pg-spgist_hamming/bktree install \ && rm -rf pg-spgist_hamming \