Skip to content

Commit

Permalink
fix copy-paste braces wrong in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed Oct 10, 2024
1 parent b430b6f commit 20a4c05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ci-conda.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions ci-wheel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ COPY pip.conf /etc/xdg/pip/pip.conf
RUN <<EOF
# Install OpenTelemetry instrumentation
pip install opentelemetry-distro[otlp] opentelemetry-exporter-prometheus
curl -L -o otel-cli-${{ matrix.ARCH }}.tar.gz https://github.com/equinix-labs/otel-cli/releases/download/v0.4.5/otel-cli_0.4.5_linux_${{ matrix.ARCH }}.tar.gz
tar -zxf otel-cli-${{ matrix.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
Expand Down

0 comments on commit 20a4c05

Please sign in to comment.