diff --git a/ci-conda.Dockerfile b/ci-conda.Dockerfile index cbd23e5..5b235c9 100644 --- a/ci-conda.Dockerfile +++ b/ci-conda.Dockerfile @@ -226,8 +226,8 @@ rm -rf gh_* # Install OpenTelemetry instrumentation pip install opentelemetry-distro[otlp] opentelemetry-exporter-prometheus -curl -L -o otel-cli-${ CPU_ARCH }.tar.gz https://github.com/equinix-labs/otel-cli/releases/download/v0.4.5/otel-cli_0.4.5_linux_${ CPU_ARCH }.tar.gz -tar -zxf otel-cli-${ CPU_ARCH }.tar.gz +curl -L -o "otel-cli-${CPU_ARCH}.tar.gz" https://github.com/equinix-labs/otel-cli/releases/download/v0.4.5/otel-cli_0.4.5_linux_${CPU_ARCH}.tar.gz +tar -zxf "otel-cli-${CPU_ARCH}.tar.gz" mv otel-cli /usr/local/bin/ git clone -b add-conda-build-instrumentation https://github.com/msarahan/opentelemetry-python-contrib pip install -e ./opentelemetry-python-contrib/instrumentation/opentelemetry-instrumentation-conda-build diff --git a/ci-wheel.Dockerfile b/ci-wheel.Dockerfile index 77a5c98..ccda678 100644 --- a/ci-wheel.Dockerfile +++ b/ci-wheel.Dockerfile @@ -158,8 +158,8 @@ COPY pip.conf /etc/xdg/pip/pip.conf RUN <