From 84d322f476663595f05ff2bcda1ddb543a12c598 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Wed, 22 Jan 2025 11:15:23 +0000 Subject: [PATCH] fix: correct echo command syntax in OTelCollector Dockerfile.tpl --- OTelCollector/Dockerfile.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OTelCollector/Dockerfile.tpl b/OTelCollector/Dockerfile.tpl index 3ddbda6e36..783980d446 100644 --- a/OTelCollector/Dockerfile.tpl +++ b/OTelCollector/Dockerfile.tpl @@ -22,7 +22,7 @@ RUN /bin/bash -c 'set -ex && \ wget https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download/v$COLLECTOR_VERSION/otelcol_$COLLECTOR_VERSION_linux_$ARCHITECTURE.deb && \ echo "Downloaded otelcol_$COLLECTOR_VERSION_linux_$ARCHITECTURE.deb" && \ dpkg -i otelcol_$COLLECTOR_VERSION_linux_$ARCHITECTURE.deb && \ - echo "Installed otelcol_$COLLECTOR_VERSION_linux_$ARCHITECTURE.deb" + echo "Installed otelcol_$COLLECTOR_VERSION_linux_$ARCHITECTURE.deb"' # Copy the configuration template file config.yaml.tpl COPY ./OTelCollector/otel-collector-config.template.yaml /etc/otel-collector-config.template.yaml