Files
docker-docs/_data/docsarchive/v1.7/Dockerfile
2016-09-29 17:16:03 -07:00

16 lines
250 B
Docker

FROM starefossen/ruby-node:2-5
RUN gem install github-pages
WORKDIR /data
RUN git clone https://github.com/docker/docker.github.io docs
WORKDIR /data/docs
RUN git checkout v1.7
RUN jekyll build
ENTRYPOINT ["jekyll", "serve", "--host=0.0.0.0"]