8 lines
197 B
Docker
8 lines
197 B
Docker
|
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"]
|