1
0
mirror of https://github.com/rancher/os.git synced 2025-08-16 13:57:43 +00:00
os/docs/Dockerfile.build

17 lines
391 B
Docker
Raw Normal View History

FROM jekyll/jekyll:3.4 AS builder
WORKDIR /build
COPY Gemfile /build
COPY Gemfile.lock /build
COPY _config.yml /build
RUN jekyll build
COPY . /build
# Set up the latest pages that get converted into redirects
ENV OS_DOCS_LATEST v1.0
RUN mkdir -p os/latest/en \
&& cp -r os/v1.0/en/* os/latest/en/ \
&& cp -r os/v1.0/en/* os/latest/ \
&& cp -r os/v1.0/en/* os/
RUN jekyll build