fix: correct echo command syntax in OTelCollector Dockerfile.tpl

This commit is contained in:
Simon Larsen
2025-01-22 11:15:23 +00:00
parent f94fbcc2ae
commit 84d322f476

View File

@@ -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