From 4e1fc06063cfcaa40ddc7e9e65950f1c635e1dd6 Mon Sep 17 00:00:00 2001 From: Pavlos Tzianos Date: Thu, 12 Sep 2024 17:59:26 +0100 Subject: [PATCH] fixup! fix CONTAINER_REPO for dev-* targets and Makefile formatting --- scripts/build_component_container.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build_component_container.sh b/scripts/build_component_container.sh index c2cee60f6..747baa179 100755 --- a/scripts/build_component_container.sh +++ b/scripts/build_component_container.sh @@ -24,9 +24,9 @@ then make -C "${executable_src_path}" --no-print-directory --quiet container CONTAINER_REPO="${CONTAINER_REPO}" DRACON_VERSION="${DRACON_VERSION}" else dockerfile_template=" - FROM ${BASE_IMAGE:-scratch} \n - COPY ${executable_path} /app/${executable} \n - ENTRYPOINT [\"/app/${executable}\"] \n + FROM ${BASE_IMAGE:-scratch} \n + COPY ${executable_path} /app/${executable_path} \n + ENTRYPOINT [\"/app/${executable_path}\"] \n " dockerfile_path=$(mktemp) printf "${dockerfile_template}" > "${dockerfile_path}"