mirror of
https://github.com/docker/docs.git
synced 2026-03-27 06:18:55 +07:00
13 lines
257 B
Docker
13 lines
257 B
Docker
|
|
FROM starefossen/github-pages:onbuild
|
|
|
|
ONBUILD RUN git clone https://www.github.com/docker/docker.github.io docs
|
|
|
|
ONBUILD WORKDIR docs
|
|
|
|
ONBUILD RUN git checkout vnext-distribution
|
|
|
|
ONBUILD COPY . /usr/src/app
|
|
|
|
CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000
|