6 lines
164 B
Docker
6 lines
164 B
Docker
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 /
|