From 1fd436f6da505bd7f23c8ac5de6687cef5b79d8f Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Tue, 26 Mar 2024 19:55:29 +0800 Subject: [PATCH] clean up tag_suffix -no longer needed --- .../data/container-build/cerc-lighthouse/Dockerfile | 3 +-- .../data/container-build/cerc-lighthouse/build.sh | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/stack_orchestrator/data/container-build/cerc-lighthouse/Dockerfile b/stack_orchestrator/data/container-build/cerc-lighthouse/Dockerfile index a5559f68..c7fa1287 100644 --- a/stack_orchestrator/data/container-build/cerc-lighthouse/Dockerfile +++ b/stack_orchestrator/data/container-build/cerc-lighthouse/Dockerfile @@ -1,5 +1,4 @@ -ARG TAG_SUFFIX="-modern" -FROM sigp/lighthouse:v4.3.0${TAG_SUFFIX} +FROM sigp/lighthouse:v4.3.0-modern RUN apt-get update; apt-get install bash netcat curl less jq wget -y; diff --git a/stack_orchestrator/data/container-build/cerc-lighthouse/build.sh b/stack_orchestrator/data/container-build/cerc-lighthouse/build.sh index cdc95612..2e9cfe3c 100755 --- a/stack_orchestrator/data/container-build/cerc-lighthouse/build.sh +++ b/stack_orchestrator/data/container-build/cerc-lighthouse/build.sh @@ -6,4 +6,4 @@ source ${CERC_CONTAINER_BASE_DIR}/build-base.sh # See: https://stackoverflow.com/a/246128/1701505 SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) -docker build -t cerc/lighthouse:local ${build_command_args} --build-arg TAG_SUFFIX="" ${SCRIPT_DIR} +docker build -t cerc/lighthouse:local ${build_command_args} ${SCRIPT_DIR}