FROM girish/base:0.5 MAINTAINER Girish Ramakrishnan ENV DEBIAN_FRONTEND noninteractive RUN mkdir -p /app/code && cd /app/code \ && wget https://wordpress.org/latest.tar.gz \ && tar zxvf latest.tar.gz --strip-components=1 \ && rm latest.tar.gz \ && chown -R www-data.www-data /app/code ADD scripts/ /app/scripts/ ADD wp-config.php /app/configs/wp-config.php # these links will become valid after setup is run RUN ln -s /app/data/wp-config.php /app/code/wp-config.php EXPOSE 80 CMD [ "/app/scripts/start.sh", "--lamp" ]