Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dockerfiles')
-rw-r--r--dockerfiles/single.Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/dockerfiles/single.Dockerfile b/dockerfiles/single.Dockerfile
index 49c58393..ca96e568 100644
--- a/dockerfiles/single.Dockerfile
+++ b/dockerfiles/single.Dockerfile
@@ -26,8 +26,10 @@ COPY --from=minifier /minify /usr/local/bin/minify
# Set versions as build args to fetch corresponding branches
ARG VER
+ARG ALGOLIA_SEARCH
ENV CI_COMMIT_REF_NAME=$VER
+ENV ALGOLIA_SEARCH=$ALGOLIA_SEARCH
# Set NANOC_ENV to production
ENV NANOC_ENV=production
@@ -78,6 +80,8 @@ RUN yarn install --frozen-lockfile \
&& bundle exec rake default \
&& bundle exec nanoc compile -VV
+RUN if [ "$ALGOLIA_SEARCH" = "false" ]; then echo "Building lunr.js..." && node scripts/lunr/preindex.js; fi
+
# Move generated HTML to /site
RUN mkdir /site \
&& mv public "/site/${VER}"