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>2019-11-22 09:12:45 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2019-11-22 09:12:45 +0300
commita64b9f0a31e7e8ae6235f1926245e9260f5991fd (patch)
treec4d3263df0fc0a5a6d7fdbefd14e21ffbe9c6737
parentfc1677f3616847a70c196dfc94f6be7fa83160d0 (diff)
Add 12.5 Dockerfile
-rw-r--r--Dockerfile.12.522
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile.12.5 b/Dockerfile.12.5
new file mode 100644
index 00000000..ebb80dc5
--- /dev/null
+++ b/Dockerfile.12.5
@@ -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=12.5
+
+# Replace the versions to march the stable branches of the upstream projects
+ARG BRANCH_EE=12-5-stable-ee
+ARG BRANCH_OMNIBUS=12-5-stable
+ARG BRANCH_RUNNER=12-5-stable
+ARG BRANCH_CHARTS=2-5-stable
+
+# This image comes from the Dockerfile.builder.onbuild file
+# https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.builder.onbuild
+# Build the website
+FROM registry.gitlab.com/gitlab-org/gitlab-docs:builder-onbuild AS builder
+
+# This image comes from the Dockerfile.nginx.onbuild file
+# https://gitlab.com/gitlab-org/gitlab-docs/blob/master/dockerfiles/Dockerfile.nginx.onbuild
+# Copy the generated HTML files to a smaller image
+FROM registry.gitlab.com/gitlab-org/gitlab-docs:nginx-onbuild