Upgrading from 8.0.100-preview.7.23376.3 to 8.0.100-rc.1.23455.8 is causing .NET profiling not working on Alpine OS (it is working correctly on ubuntu, windows and macOS). Is there any new dependency that should be installed? We are currently using:
FROM node:current-alpine3.17
RUN apk add --no-cache --virtual .pipeline-deps readline linux-pam \
&& apk add bash sudo shadow \
&& apk add icu-libs krb5-libs libgcc libgdiplus libintl libssl1.1 libstdc++ zlib git wget libxml2 zip \
&& apk del .pipeline-deps
LABEL "com.azure.dev.pipelines.agent.handler.node.path"="/usr/local/bin/node"
CMD [ "node" ]
Upgrading from 8.0.100-preview.7.23376.3 to 8.0.100-rc.1.23455.8 is causing .NET profiling not working on Alpine OS (it is working correctly on ubuntu, windows and macOS). Is there any new dependency that should be installed? We are currently using: