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
12 lines
385 B
FROM richarvey/nginx-php-fpm:1.5.3
|
|
COPY ./ /var/www/html/
|
|
|
|
RUN apk update
|
|
RUN apk add openldap-dev
|
|
RUN docker-php-ext-install ldap
|
|
|
|
RUN chmod -R 777 /var/www/html/
|
|
RUN mkdir /showdoc_data
|
|
RUN mkdir /showdoc_data/html
|
|
RUN cp -R /var/www/html/ /showdoc_data/
|
|
CMD if [ ! -f "/var/www/html/index.php" ]; then \cp -fr /showdoc_data/html/ /var/www/ ;fi;chmod 777 -R /showdoc_data ;/start.sh
|