Skip to content

Commit de37ee3

Browse files
committed
CI Dockerfile.ubuntu: adjust also for ubuntu-latest
some packages changed its names
1 parent 8b13221 commit de37ee3

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed
Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# inspired by https://github.com/aferrero2707/appimage-testsuite
22
# 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
34
FROM ubuntu
45
RUN apt-get update
5-
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\
616
libgmp10 libharfbuzz0b libopengl0 libp11-kit0 libx11-6 xvfb

0 commit comments

Comments
 (0)