Exécuter le script shell dans dockerfile

FROM php:7-fpm    
ADD bootstrap.sh /
RUN bash -c "/bootstrap.sh"
Adventurous Anteater