DBIO-PostgreSQL-EV

 view release on metacpan or  search on metacpan

maint/docker/Dockerfile.test  view on Meta::CPAN

COPY --from=libpq-source /libpq-out/usr/bin/ /usr/local/bin/
RUN ldconfig \
    && ln -s /usr/local/include/postgresql /usr/include/postgresql \
    && for f in /usr/local/lib/libpq.so*; do \
         ln -sf "$f" "/usr/lib/x86_64-linux-gnu/$(basename "$f")"; \
       done

# Perl + cpanm + the XS build chain + libldap (a runtime dep of libpq 17;
# EV::Pg's XS module dynamically links it for the LDAP authentication path,
# so it must be present even though our tests never authenticate via LDAP).
# ssl-dev is needed by several of the CPAN deps (Net::SSLeay, IO::Socket::SSL,
# etc.).
RUN apt-get update \
    && apt-get install -y --no-install-recommends \
         perl \
         cpanminus \
         build-essential \
         pkg-config \
         libssl-dev \
         libldap-2.5-0 \
         ca-certificates \



( run in 0.701 second using v1.01-cache-2.11-cpan-6aa56a78535 )