33 lines
1.3 KiB
Docker
33 lines
1.3 KiB
Docker
# Create a container for running the OpenTelemetry W3C Trace Context tests https://github.com/w3c/trace-context/tree/master/test.
|
|
# This should be run from the root of the repo:
|
|
# docker build --file test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests/Dockerfile .
|
|
|
|
ARG BUILD_SDK_VERSION=7.0
|
|
ARG TEST_SDK_VERSION=7.0
|
|
|
|
FROM ubuntu AS w3c
|
|
#Install git
|
|
WORKDIR /w3c
|
|
RUN apt-get update && apt-get install -y git
|
|
RUN git clone https://github.com/w3c/trace-context.git
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:${BUILD_SDK_VERSION} AS build
|
|
ARG PUBLISH_CONFIGURATION=Release
|
|
ARG PUBLISH_FRAMEWORK=net7.0
|
|
WORKDIR /repo
|
|
COPY . ./
|
|
WORKDIR "/repo/test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests"
|
|
RUN dotnet publish "OpenTelemetry.Instrumentation.W3cTraceContext.Tests.csproj" -c "${PUBLISH_CONFIGURATION}" -f "${PUBLISH_FRAMEWORK}" -o /drop -p:IntegrationBuild=true -p:TARGET_FRAMEWORK=${PUBLISH_FRAMEWORK}
|
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:${TEST_SDK_VERSION} AS final
|
|
WORKDIR /test
|
|
COPY --from=build /drop .
|
|
COPY --from=w3c /w3c .
|
|
RUN apt-get update \
|
|
&& apt-get install -y python3-pip python3-dev \
|
|
&& cd /usr/local/bin \
|
|
&& ln -s /usr/bin/python3 python \
|
|
&& pip3 install --upgrade pip \
|
|
&& pip3 install aiohttp
|
|
ENTRYPOINT ["dotnet", "vstest", "OpenTelemetry.Instrumentation.W3cTraceContext.Tests.dll", "--logger:console;verbosity=detailed"]
|