Hi ViniciusApolinario ,
Fonts are still not installed after using the above steps. Can you please help me out where I could be wrong. Also, am I invoking the LoadFonts.ps1 in the correct place ?
FROM mcr.microsoft.com/dotnet/framework/aspnet:4.8.1
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
ARG SHARE_PW=
COPY Dependencies/Installfonts.cmd .
COPY Dependencies/LoadFonts.ps1 .
COPY Dependencies/ReportViewer.msi .
COPY Dependencies/SQLSysClrTypes.msi .
COPY Dependencies/t2embed.dll ./Windows/System32/.
RUN Start-Process msiexec.exe -ArgumentList '/i', 'C:\SQLSysClrTypes.msi', '/quiet', '/norestart' -NoNewWindow -Wait
RUN Start-Process msiexec.exe -ArgumentList '/i', 'C:\ReportViewer.msi', '/quiet', '/norestart' -NoNewWindow -Wait
RUN Invoke-Item 'C:\Installfonts.cmd' -Wait
RUN Invoke-Item 'C:\Loadfonts.ps1' -Wait
WORKDIR /inetpub/wwwroot
COPY bin/PublishedFolder/bin/. ./
EXPOSE 80