PHP Classes

File: vendor/io-developer/php-whois/Dockerfile-tests

Recommend this page to a friend!
  Classes of Till Wehowski   PHP RDAP Server   vendor/io-developer/php-whois/Dockerfile-tests   Download  
File: vendor/io-developer/php-whois/Dockerfile-tests
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP RDAP Server
Process RDAP queries about an IP address or domain
Author: By
Last change:
Date: 12 days ago
Size: 462 bytes
 

Contents

Class file image Download
ARG IMAGE FROM ${IMAGE} # packages ARG PACKAGES RUN if [ "${PACKAGES}" ]; then apk update && apk add -f ${PACKAGES}; fi # php modules ARG PHPMODS RUN if [ "${PHPMODS}" ]; then docker-php-ext-install ${PHPMODS}; fi # composer RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer VOLUME /workdir WORKDIR /workdir COPY "./docker-entrypoint.tests.sh" "/entrypoint.sh" ENTRYPOINT ["/bin/sh", "/entrypoint.sh"]