123456789101112131415161718192021 |
- FROM girish/base:0.5
- MAINTAINER Girish Ramakrishnan <girish@forwardbias.in>
- 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/base/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/base/scripts/start.sh", "--lamp" ]
|