From 188280d19fbd8fdcc7a9777543de9c568572ae4e Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Thu, 22 Aug 2024 15:16:28 +0200 Subject: [PATCH] build: add default FACTORY_VERSION to Dockerfile (#1198) --- factory/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/factory/Dockerfile b/factory/Dockerfile index e72daca77a..afb62e8750 100644 --- a/factory/Dockerfile +++ b/factory/Dockerfile @@ -1,5 +1,7 @@ - -ARG FACTORY_VERSION +# FACTORY_VERSION is expected to be overridden +# Regular builds, using docker compose, take the value from +# the .env file in the same directory as this file +ARG FACTORY_VERSION='4.1.0' # Multi-stage default image. Used to test and create the pre-built docker images. FROM cypress/factory:${FACTORY_VERSION} AS default_image