Add additional distros

This commit is contained in:
ReenigneArcher
2021-12-19 10:40:11 -05:00
parent a5e2df11eb
commit 23e64f23a8
8 changed files with 65 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
FROM fedora:33 AS sunshine-fedora_33
ARG DEBIAN_FRONTEND=noninteractive
ARG TZ="Europe/London"
RUN dnf group install "Development Tools" \
dnf install https://mirrors.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm https://mirrors.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm \
dnf install -y openssl-devel ffmpeg-devel boost-devel boost-static.x86_64 pulseaudio-libs-devel opus-devel libXtst-devel libX11-devel libXfixes-devel libevdev-devel libxcb-devel cmake \
dnf install libXcursor-devel libXrandr-devel libXinerama-devel libXi-devel mesa-libGL-devel
COPY build-private.sh /root/build.sh
ENTRYPOINT ["/root/build.sh"]