diff --git a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md index 846f3a2f3..1464a4378 100644 --- a/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md +++ b/Document-Processing/PDF/Conversions/HTML-To-PDF/NET/troubleshooting.md @@ -1593,4 +1593,29 @@ Refer to the following package reference: {% endhighlight %} -{% endtabs %} \ No newline at end of file +{% endtabs %} + +## Installing Chromium in Alpine Linux Docker Without Edge Repository + + + + + + + + + +
Reason +Using the Alpine Edge repository introduces packages that are not part of the stable release, which can trigger Twist lock security issues. To maintain security compliance, we should install Chromium from the stable repository. +
Solution +You can install Chromium directly from the stable Alpine repository using the following command: +

+Docker File:

+{% tabs %} +{% highlight C# tabtitle="C#" %} +RUN apk add --no-cache chromium && \ +rm -rf /var/cache/apk/* + +{% endhighlight %} +{% endtabs %} +
\ No newline at end of file