Files
docker-machine/docs/Dockerfile
Mary Anthony ed45ddb82f Tooling for release build
Tweaking for tooling
Adding in the sed for markdown in Dockerfile
Should be machine not engine
Updating with correct image

Signed-off-by: Mary Anthony <mary@docker.com>
2015-06-14 16:05:57 -07:00

24 lines
768 B
Docker

FROM docs/base:hugo
MAINTAINER Mary Anthony <mary@docker.com> (@moxiegirl)
# to get the git info for this repo
COPY . /src
COPY . /docs/content/machine/
# Sed to process GitHub Markdown
# 1-2 Remove comment code from metadata block
# 3 Remove .md extension from link text
# 4 Change ](/ to ](/project/ in links
# 5 Change ](word) to ](/project/word)
# 6 Change ](../../ to ](/project/
# 7 Change ](../ to ](/project/word)
#
#
RUN find /docs/content/machine -type f -name "*.md" -exec sed -i.old \
-e '/^<!.*metadata]>/g' \
-e '/^<!.*end-metadata.*>/g' \
-e 's/\([(]\)\(.*\)\(\.md\)/\1\2/g' \
-e 's/\(\]\)\([(]\)\(\/\)/\1\2\/machine\//g' \
-e 's/\(\][(]\)\([A-z]*[)]\)/\]\(\/machine\/\2/g' \
-e 's/\(\][(]\)\(\.\.\/\)/\1\/machine\//g' {} \;