You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
385 B

4 years ago
  1. FROM richarvey/nginx-php-fpm:1.5.3
  2. COPY ./ /var/www/html/
  3. RUN apk update
  4. RUN apk add openldap-dev
  5. RUN docker-php-ext-install ldap
  6. RUN chmod -R 777 /var/www/html/
  7. RUN mkdir /showdoc_data
  8. RUN mkdir /showdoc_data/html
  9. RUN cp -R /var/www/html/ /showdoc_data/
  10. CMD if [ ! -f "/var/www/html/index.php" ]; then \cp -fr /showdoc_data/html/ /var/www/ ;fi;chmod 777 -R /showdoc_data ;/start.sh