github.com/mheon/docker@v0.11.2-0.20150922122814-44f47903a831/docs/Dockerfile (about) 1 FROM docs/base:latest 2 MAINTAINER Mary Anthony <mary@docker.com> (@moxiegirl) 3 4 # To get the git info for this repo 5 COPY . /src 6 7 COPY . /docs/content/ 8 9 RUN svn checkout https://github.com/docker/compose/trunk/docs /docs/content/compose 10 RUN svn checkout https://github.com/docker/swarm/trunk/docs /docs/content/swarm 11 RUN svn checkout https://github.com/docker/machine/trunk/docs /docs/content/machine 12 RUN svn checkout https://github.com/docker/distribution/trunk/docs /docs/content/registry 13 RUN svn checkout https://github.com/kitematic/kitematic/trunk/docs /docs/content/kitematic 14 RUN svn checkout https://github.com/docker/tutorials/trunk/docs /docs/content/ 15 RUN svn checkout https://github.com/docker/opensource/trunk/docs /docs/content/opensource 16 17 18 19 20 # Sed to process GitHub Markdown 21 # 1-2 Remove comment code from metadata block 22 # 3 Change ](/word to ](/project/ in links 23 # 4 Change ](word.md) to ](/project/word) 24 # 5 Remove .md extension from link text 25 # 6 Change ](../ to ](/project/word) 26 # 7 Change ](../../ to ](/project/ --> not implemented 27 # 28 # 29 RUN /src/pre-process.sh /docs