mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 10:02:56 +01:00
17 lines
426 B
Text
17 lines
426 B
Text
FROM ruby:2.5-alpine
|
|
MAINTAINER GitLab Documentation Team
|
|
|
|
WORKDIR /tmp
|
|
|
|
RUN apk update && apk upgrade && apk add --no-cache \
|
|
build-base \
|
|
bash \
|
|
grep
|
|
|
|
RUN wget https://gitlab.com/gitlab-com/gitlab-docs/-/archive/master/gitlab-docs-master.tar.bz2 \
|
|
&& tar xvjf gitlab-docs-master.tar.bz2 \
|
|
&& mv gitlab-docs-master gitlab-docs \
|
|
&& rm gitlab-docs-master.tar.bz2
|
|
|
|
RUN cd gitlab-docs \
|
|
&& bundle install --jobs 4
|