mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
16 lines
250 B
Docker
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.6
|
|
|
|
RUN jekyll build
|
|
|
|
ENTRYPOINT ["jekyll", "serve", "--host=0.0.0.0"]
|