From 8a5ef82d700d99dcd8d044c3b42e12988b15d533 Mon Sep 17 00:00:00 2001 From: Teake Nutma <t.a.nutma@rug.nl> Date: Thu, 30 Jun 2022 11:03:27 +0200 Subject: [PATCH] Add defaults to latex-builder args --- dockerfiles/latex-builder/Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dockerfiles/latex-builder/Dockerfile b/dockerfiles/latex-builder/Dockerfile index 053b8ba..18b989b 100644 --- a/dockerfiles/latex-builder/Dockerfile +++ b/dockerfiles/latex-builder/Dockerfile @@ -1,9 +1,11 @@ -ARG CI_AWE_IMAGE_BASE -ARG CI_AWE_IMAGE_TAG +# Set actual values are set in .gitlab-ci.yml when calling kaniko. +# The defaults here are to assist building this image locally. +ARG CI_AWE_IMAGE_BASE=registry.astro-wise.org/omegacen/ci-templates +ARG CI_AWE_IMAGE_TAG=master # Note: building this image in GitLab CI will only work if the conda-builder image -# is not already built for the revelant tag CI_AWE_IMAGE_TAG (set in .gitlab-ci.yml) -# or if the conda-builder image is built along with this image. +# is not already built for the revelant tag CI_AWE_IMAGE_TAG or if the +# conda-builder image is built along with this image. FROM ${CI_AWE_IMAGE_BASE}/conda-builder:${CI_AWE_IMAGE_TAG} LABEL version="1.3" -- GitLab