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/Dockerfile.gitlab-docs-base')
-rw-r--r--dockerfiles/Dockerfile.gitlab-docs-base11
1 files changed, 3 insertions, 8 deletions
diff --git a/dockerfiles/Dockerfile.gitlab-docs-base b/dockerfiles/Dockerfile.gitlab-docs-base
index 1789d541..03009370 100644
--- a/dockerfiles/Dockerfile.gitlab-docs-base
+++ b/dockerfiles/Dockerfile.gitlab-docs-base
@@ -3,7 +3,6 @@
# are needed to build the docs site and run the tests.
#
FROM ruby:2.7.5-alpine3.15
-MAINTAINER GitLab Technical Writing team
# Install dependencies
RUN apk add --no-cache -U \
@@ -26,10 +25,6 @@ RUN apk add --no-cache -U \
tar \
xz \
xz-dev \
- yarn
-
-# Do not install rdoc to save some space
-RUN echo 'gem: --no-document' >> /etc/gemrc
-
-# Update RubyGems
-RUN gem update --system 3.3.13
+ yarn \
+ && echo 'gem: --no-document' >> /etc/gemrc \
+ && gem update --system 3.3.13