Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1593,4 +1593,29 @@ Refer to the following package reference:
</ItemGroup>

{% endhighlight %}
{% endtabs %}
{% endtabs %}

## Installing Chromium in Alpine Linux Docker Without Edge Repository

<table>
<th style="font-size:14px" width="100px">Reason
</th>
<th style="font-size:14px">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.
</th>

<tr>
<th style="font-size:14px" width="100px">Solution
</th>
<td>You can install Chromium directly from the stable Alpine repository using the following command:
<br><br>
<b>Docker File:</b><br><br>
{% tabs %}
{% highlight C# tabtitle="C#" %}
RUN apk add --no-cache chromium && \
rm -rf /var/cache/apk/*

{% endhighlight %}
{% endtabs %}
</td>
</tr>
</table>