mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-17 10:09:16 +00:00
It seems like some install fail if we do not upgrade at the same time. fixes the error: <https://gist.github.com/MartinPulec/602c195ec03933f826668b3ec1239d02> + use more descriptive name for the CI step + drop final \ in the Dockerfile (as mentioned in the CI output linked above)
15 lines
312 B
Docker
15 lines
312 B
Docker
# inspired by https://github.com/aferrero2707/appimage-testsuite
|
|
FROM archlinux
|
|
RUN pacman --noconfirm -Sy archlinux-keyring
|
|
RUN pacman-key --init
|
|
RUN pacman-key --populate
|
|
RUN pacman --noconfirm -Syu \
|
|
fontconfig \
|
|
freetype2 \
|
|
harfbuzz \
|
|
jack2\
|
|
libglvnd \
|
|
libx11 \
|
|
xorg-server-xvfb
|
|
|