mediawiki/Dockerfile

23 lines
571 B
Docker
Raw Normal View History

2014-06-20 01:44:35 -04:00
# Mediawiki-Apache
#
# Version 1.0
2014-06-18 16:18:40 -04:00
FROM tutum/apache-php:latest
2014-06-20 01:44:35 -04:00
MAINTAINER John E Arnold <iohannes.eduardus.arnold@gmail.com>
2014-06-18 16:18:40 -04:00
WORKDIR /
2014-06-20 01:44:35 -04:00
# Remove the old hello world app and grab Mediawiki source
RUN apt-get update && apt-get install -yq git && rm -rf /var/lib/apt/lists/*
2014-06-18 17:22:54 -04:00
RUN rm -fr /app && git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git /app
RUN cd /app && git checkout -b REL1_23 origin/REL1_23
2014-06-20 01:44:35 -04:00
# Create the section for persistent files
RUN mkdir /var/lib/mediawiki
2014-06-18 17:22:54 -04:00
ADD setup.sh /setup.sh
RUN chmod +x setup.sh
2014-06-18 16:18:40 -04:00
EXPOSE 80
CMD ./setup.sh && ./run.sh