We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b13221 commit de37ee3Copy full SHA for de37ee3
.github/scripts/Linux/utils/Dockerfile.ubuntu
@@ -1,6 +1,16 @@
1
# inspired by https://github.com/aferrero2707/appimage-testsuite
2
# installing libraries included in https://raw.githubusercontent.com/probonopd/AppImages/master/excludelist
3
+# see also https://raw.githubusercontent.com/AppImageCommunity/pkg2appimage/refs/heads/master/excludedeblist
4
FROM ubuntu
5
RUN apt-get update
-RUN apt-get install -y libasound2 libegl1-mesa libfontconfig1 libgl1-mesa-glx \
6
+RUN \
7
+. /etc/os-release; \
8
+if [ "$VERSION_ID" != 22.04 ]; then \
9
+ T64=t64; \
10
+fi; \
11
+apt-get install -y\
12
+ libasound2$T64\
13
+ libegl1\
14
+ libfontconfig1\
15
+ libglx-mesa0\
16
libgmp10 libharfbuzz0b libopengl0 libp11-kit0 libx11-6 xvfb
0 commit comments