diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2fe1ed6 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM tutum/apache-php:latest + +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 + +EXPOSE 80 +CMD ["/run.sh"]