12 lines
478 B
Docker
12 lines
478 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:6.0-jammy
|
|
|
|
# install OpenTelemetry .NET Automatic Instrumentation
|
|
ARG OTEL_VERSION=0.5.0
|
|
ADD https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/releases/download/v${OTEL_VERSION}/otel-dotnet-auto-install.sh otel-dotnet-auto-install.sh
|
|
RUN apt-get update && apt-get install -y unzip && \
|
|
OTEL_DOTNET_AUTO_HOME="/otel-dotnet-auto" sh otel-dotnet-auto-install.sh
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN dotnet publish -c Release -o out
|