Initial commit.

This commit is contained in:
2023-01-10 21:47:02 +00:00
commit 1cec318025
7 changed files with 134 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM postgres:14
RUN apt-get update
RUN apt-get install -y build-essential
RUN apt-get install -y postgresql-server-dev-14
COPY rdns.c Makefile rdns.control rdns--1.0.sql /usr/src/rdns/
RUN cd /usr/src/rdns/; \
make; \
make install; \
echo "shared_preload_libraries = 'rdns'" >> $PGDATA/postgresql.conf;