From 33dd10bd557cc6530c167b04645ec454258d0884 Mon Sep 17 00:00:00 2001 From: Ben Hardill Date: Wed, 9 Oct 2024 12:39:36 +0100 Subject: [PATCH] Fix case of RELEASE stage (#455) * Add iputils-ping to the base packages * Fix case on final build stage closes #450 --- .docker/Dockerfile.alpine | 2 +- .docker/Dockerfile.debian | 2 +- docker-custom/Dockerfile.custom | 2 +- docker-custom/Dockerfile.debian | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.docker/Dockerfile.alpine b/.docker/Dockerfile.alpine index 842f1c18..c2cd31f9 100644 --- a/.docker/Dockerfile.alpine +++ b/.docker/Dockerfile.alpine @@ -52,7 +52,7 @@ RUN apk add --no-cache --virtual buildtools build-base linux-headers udev python cp -R node_modules prod_node_modules #### Stage RELEASE ##################################################################################################### -FROM base AS RELEASE +FROM base AS release ARG BUILD_DATE ARG BUILD_VERSION ARG BUILD_REF diff --git a/.docker/Dockerfile.debian b/.docker/Dockerfile.debian index 96f9a0e3..935bd636 100644 --- a/.docker/Dockerfile.debian +++ b/.docker/Dockerfile.debian @@ -53,7 +53,7 @@ RUN apt-get update && apt-get install -y build-essential python && \ cp -R node_modules prod_node_modules #### Stage RELEASE ##################################################################################################### -FROM base AS RELEASE +FROM base AS release ARG BUILD_DATE ARG BUILD_VERSION ARG BUILD_REF diff --git a/docker-custom/Dockerfile.custom b/docker-custom/Dockerfile.custom index 187742ea..b1f99fff 100644 --- a/docker-custom/Dockerfile.custom +++ b/docker-custom/Dockerfile.custom @@ -52,7 +52,7 @@ RUN apk add --no-cache --virtual buildtools build-base linux-headers udev python cp -R node_modules prod_node_modules #### Stage RELEASE ##################################################################################################### -FROM base AS RELEASE +FROM base AS release ARG BUILD_DATE ARG BUILD_VERSION ARG BUILD_REF diff --git a/docker-custom/Dockerfile.debian b/docker-custom/Dockerfile.debian index 1cc17127..57db5781 100644 --- a/docker-custom/Dockerfile.debian +++ b/docker-custom/Dockerfile.debian @@ -54,7 +54,7 @@ RUN apt-get update && apt-get install -y build-essential python && \ cp -R node_modules prod_node_modules #### Stage RELEASE ##################################################################################################### -FROM base AS RELEASE +FROM base AS release ARG BUILD_DATE ARG BUILD_VERSION ARG BUILD_REF