First version
This commit is contained in:
15
Dockerfile
Normal file
15
Dockerfile
Normal 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
|
||||
Reference in New Issue
Block a user