First version

This commit is contained in:
2025-04-03 01:39:57 -04:00
commit 232614a894
5 changed files with 106 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
ARG PG_MAJOR=15
FROM postgres:$PG_MAJOR-bookworm
RUN apt update
RUN apt install -y postgresql-server-dev-$PG_MAJOR
RUN apt install -y build-essential
COPY . /build
WORKDIR /build
RUN make && make install