Last active
August 29, 2015 14:26
-
-
Save dhargitai/e6b9c74cfe64b25f42e2 to your computer and use it in GitHub Desktop.
Szepulhu dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM diatigrah/php-nginx-projectbase:0.2.1 | |
RUN apt-get install -y ant && \ | |
apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | |
ADD docker/services/php5-fpm/php.ini /etc/php5/fpm/conf.d/40-custom.ini | |
ADD docker/services/php5-fpm/php.ini /etc/php5/cli/conf.d/40-custom.ini | |
ADD docker/services/nginx/sites /etc/nginx/sites-enabled | |
ADD application /var/www/szepul.hu | |
ADD docker/run.sh /root/run.sh | |
ADD application/bin/wait-for-db.sh /wait-for-db.sh | |
RUN chmod a+x /wait-for-db.sh | |
WORKDIR /var/www/szepul.hu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment