diff options
Diffstat (limited to 'build/postgres/Dockerfile')
-rw-r--r-- | build/postgres/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build/postgres/Dockerfile b/build/postgres/Dockerfile new file mode 100644 index 0000000..834fa89 --- /dev/null +++ b/build/postgres/Dockerfile @@ -0,0 +1,6 @@ +FROM postgres:16-alpine +RUN apk add --no-cache make git +RUN git clone https://github.com/michelp/pgjwt.git /tmp/pgjwt +WORKDIR /tmp/pgjwt +RUN make install +WORKDIR / |