PHP Classes

File: Dockerfile

Recommend this page to a friend!
  Classes of Fatih Yard?mc?   PHP Whois   Dockerfile   Download  
File: Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Whois
Query about domains accessing a Whois server
Author: By
Last change:
Date: 27 days ago
Size: 450 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 "./run-tests.sh" "/run-tests.sh" RUN chmod +x "/run-tests.sh" ENTRYPOINT []