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-10-22 08:09:40 +0300
committerAchilleas Pipinellis <axil@gitlab.com>2019-10-22 08:09:40 +0300
commit9f5c5f3a83678fa734b19ab6c464490b7368b92d (patch)
tree2059dce42831afc1573e079f8cf26c6e206bc6e6
parente2d144d0e4eb5650355c726f7cb8d31c98aed3dc (diff)
Add 12.4 Dockerfile
-rw-r--r--Dockerfile.12.422
1 files changed, 22 insertions, 0 deletions
diff --git a/Dockerfile.12.4 b/Dockerfile.12.4
new file mode 100644
index 00000000..2c214d1d
--- /dev/null
+++ b/Dockerfile.12.4
@@ -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.4
+
+# Replace the versions to march the stable branches of the upstream projects
+ARG BRANCH_EE=12-4-stable-ee
+ARG BRANCH_OMNIBUS=12-4-stable
+ARG BRANCH_RUNNER=12-4-stable
+ARG BRANCH_CHARTS=2-4-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