quick-noon-18541
02/24/2026, 4:42 PMFROM <http://mcr.microsoft.com/dotnet/sdk:9.0|mcr.microsoft.com/dotnet/sdk:9.0> AS installer-env
COPY . /src/dotnet-function-app
WORKDIR /src/dotnet-function-app/src
RUN mkdir -p /home/site/wwwroot && \
dotnet publish xxx --output /home/site/wwwroot
FROM <http://mcr.microsoft.com/azure-functions/dotnet-isolated:4-dotnet-isolated9.0|mcr.microsoft.com/azure-functions/dotnet-isolated:4-dotnet-isolated9.0>
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl \
&& apt-get install -y azure-cli \
&& curl -fsSL <https://get.pulumi.com> | sh \
&& rm -f /home/.pulumi/bin/pulumi-language-yaml \
&& rm -f /home/.pulumi/bin/pulumi-language-java \
&& apt-get purge -y curl \
&& apt-get autoremove -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENV PATH="/home/.pulumi/bin:$PATH"
ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
AzureFunctionsJobHost__Logging__Console__IsEnabled=true
RUN pulumi plugin install resource azure v6.24.0 --exact \
&& pulumi plugin install resource azure-native v3.14.0 --exact
COPY --from=installer-env ["/home/site/wwwroot", "/home/site/wwwroot"]
Some lines are to mitigate CVEs in pulumi but I still see in scanners CVE-2025-68121 home/.pulumi/bin/pulumi-language-dotnet stdlib 1.24.12. After some conversation with claude it suggests it needs to be fixed on pulumi side. Do you know any walkaround or do you plan to fix that vuln? AI suggests it's in golang version which pulumi is built against.future-hairdresser-70637
02/26/2026, 8:37 PMquick-noon-18541
02/27/2026, 11:04 AMechoing-dinner-19531
02/27/2026, 11:39 AMechoing-dinner-19531
02/27/2026, 11:39 AMquick-noon-18541
02/27/2026, 12:59 PMechoing-dinner-19531
02/27/2026, 1:06 PMechoing-dinner-19531
02/27/2026, 1:06 PMfuture-hairdresser-70637
02/27/2026, 1:33 PMquick-noon-18541
02/27/2026, 1:36 PMquick-noon-18541
02/27/2026, 1:47 PMcurl -fsSL <https://get.pulumi.com> ? I tried to rebuild image without cache and /home/.pulumi/bin/pulumi version still returns 223 versionquick-noon-18541
02/27/2026, 2:23 PMA new version of Pulumi is available. To upgrade from version '3.146.0' to '3.223.0', visit <https://pulumi.com/docs/install/> for manual instructions and release notes
Is there a process to additionally publish version or something? According to gh 3.224 pulumi/pulumi should be releasedechoing-dinner-19531
02/27/2026, 2:33 PMechoing-dinner-19531
02/27/2026, 2:34 PMquick-noon-18541
02/27/2026, 7:53 PMechoing-dinner-19531
02/27/2026, 8:38 PM