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:
authorAchilleas Pipinellis <axil@gitlab.com>2018-06-22 12:06:30 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2018-06-22 12:06:30 +0300
commit678f14076807a1e83f9f257e67c647fbd30b46a4 (patch)
tree53f694658e12d8d6564478050158736420397e8b
parent1ec45659f4c8fafa319628ec7115c26165cec4ca (diff)
Release 11.0
-rw-r--r--Dockerfile.11.022
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile.11.0 b/Dockerfile.11.0
new file mode 100644
index 00000000..da5377f0
--- /dev/null
+++ b/Dockerfile.11.0
@@ -0,0 +1,22 @@
+#
+# Copy this Dockerfile to the root of each branch you want to create an archive
+#
+
+# Set to the version for this archive (must match the branch name)
+ARG VER=11.0
+
+# Replace the versions to march the stable branches of the upstream projects
+ARG BRANCH_EE=11-0-stable-ee
+ARG BRANCH_CE=11-0-stable
+ARG BRANCH_OMNIBUS=11-0-stable
+ARG BRANCH_RUNNER=11-0-stable
+
+# This image comes from the Dockerfile.builder.onbuild file
+# https://gitlab.com/gitlab-com/gitlab-docs/blob/master/dockerfiles/Dockerfile.builder.onbuild
+# Build the website
+FROM registry.gitlab.com/gitlab-com/gitlab-docs:builder-onbuild AS builder
+
+# This image comes from the Dockerfile.nginx.onbuild file
+# https://gitlab.com/gitlab-com/gitlab-docs/blob/master/dockerfiles/Dockerfile.nginx.onbuild
+# Copy the generated HTML files to a smaller image
+FROM registry.gitlab.com/gitlab-com/gitlab-docs:nginx-onbuild