You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Failed to launch chromium: Missing required dependent packages
183
183
184
184
<table>
185
-
186
185
<thstyle="font-size:14px"width="100px">Exception
187
186
</th>
188
187
<thstyle="font-size:14px">Failed to launch chromium: Missing required dependent packages
189
188
</th>
190
-
191
189
<tr>
192
190
<thstyle="font-size:14px"width="100px">Reason
193
191
</th>
194
192
<td>The required dependencies for the Chromium are not installed on the system.
195
193
</td>
196
194
</tr>
197
-
198
-
<tr>
199
-
<thstyle="font-size:14px"width="100px">Solution
200
-
</th>
195
+
<tr>
196
+
<thstyle="font-size:14px"width="100px">Solution
197
+
</th>
201
198
<td>Ensure all required dependencies for the Chromium are installed on the system. This may include additional libraries or packages.
202
-
</td>
199
+
Ensure all required dependencies for the Chromium are installed on the system. This may include additional libraries or packages.
200
+
Here's how you can modify your Docker file:
201
+
{% highlight dockerfile %}
202
+
FROM your-base-image
203
+
204
+
RUN apt-get update && apt-get install -yq --no-install-recommends \
205
+
libasound2 \
206
+
libatk1.0-0 \
207
+
libc6 \
208
+
libcairo2 \
209
+
libcups2 \
210
+
libdbus-1-3 \
211
+
libexpat1 \
212
+
libfontconfig1 \
213
+
libgcc1 \
214
+
libgconf-2-4 \
215
+
libgdk-pixbuf2.0-0 \
216
+
libglib2.0-0 \
217
+
libgtk-3-0 \
218
+
libnspr4 \
219
+
libpango-1.0-0 \
220
+
libpangext6 \
221
+
libxfixes3 \
222
+
libxi6 \
223
+
libxrandr2 \
224
+
libxrender1 \
225
+
libxss1 \
226
+
libxtst6 \
227
+
libnss3 \
228
+
libgbm1 \
229
+
&& apt-get clean \
230
+
&& rm -rf /var/lib/apt/lists/*
231
+
{% endhighlight %}
232
+
</td>
203
233
</tr>
204
-
205
234
</table>
206
235
207
236
## Application Crash in Syncfusion 29.X.X Due to Missing `locales` Folder Required by Chromium During HTML Rendering or Conversion
@@ -1595,27 +1624,3 @@ Refer to the following package reference:
1595
1624
{% endhighlight %}
1596
1625
{% endtabs %}
1597
1626
1598
-
## Installing Chromium in Alpine Linux Docker Without Edge Repository
1599
-
1600
-
<table>
1601
-
<thstyle="font-size:14px"width="100px">Reason
1602
-
</th>
1603
-
<thstyle="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.
1604
-
</th>
1605
-
1606
-
<tr>
1607
-
<thstyle="font-size:14px"width="100px">Solution
1608
-
</th>
1609
-
<td>You can install Chromium directly from the stable Alpine repository using the following command:
0 commit comments