pgbouncer
Source
FROM stagex/pallet-clang-gnu-busybox AS build
COPY --from=stagex/core-openssl . /
COPY --from=stagex/user-libevent . /
ARG VERSION
ADD fetch/pgbouncer-${VERSION}.tar.gz .
WORKDIR /pgbouncer-${VERSION}
RUN --network=none <<-EOF
./configure \
--prefix=/usr \
--mandir=/usr/share/man
make
make install DESTDIR=/rootfs
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /Copied to clipboard!