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:
authorJacques Erasmus <jerasmus@gitlab.com>2019-10-15 01:13:40 +0300
committerEvan Read <eread@gitlab.com>2019-10-15 01:13:40 +0300
commit21cc1fef11349417ed515557748369cfb235fc81 (patch)
tree80d2aa5f80f77da64871987030f47e3c14492b66 /dockerfiles
parent179a601f70c3ca693911895814b271130d68df4a (diff)
Add support for modern JS
Added rollup to the project
Diffstat (limited to 'dockerfiles')
-rw-r--r--dockerfiles/Dockerfile.bootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/dockerfiles/Dockerfile.bootstrap b/dockerfiles/Dockerfile.bootstrap
index 784e8fe9..2de4905e 100644
--- a/dockerfiles/Dockerfile.bootstrap
+++ b/dockerfiles/Dockerfile.bootstrap
@@ -3,7 +3,7 @@
# all Nanoc's runtime dependencies and gems.
#
-FROM ruby:2.6.3-alpine3.8
+FROM registry.gitlab.com/gitlab-org/gitlab-build-images:gitlab-docs
# Install packages needed at build and run time
RUN apk add --no-cache --virtual build-deps \
@@ -12,7 +12,7 @@ RUN apk add --no-cache --virtual build-deps \
libxslt-dev
# Install packages needed at build and run time
-RUN apk add --no-cache libxslt libcurl openssl git grep bash pngquant
+RUN apk add --no-cache libxslt libcurl openssl git grep bash pngquant nodejs
# Do not install rdoc to save some space
RUN echo 'gem: --no-document' >> /etc/gemrc