2021-12-19 15:24:02 -05:00
|
|
|
FROM fedora:35 AS sunshine-fedora_35
|
2021-12-19 10:40:11 -05:00
|
|
|
|
2022-04-18 14:53:28 -04:00
|
|
|
# Fedora 35 end of life is TBD
|
|
|
|
|
2021-12-19 18:03:50 -05:00
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
2021-12-19 11:06:09 -05:00
|
|
|
RUN dnf -y update && \
|
2021-12-19 13:23:06 -05:00
|
|
|
dnf -y group install "Development Tools" && \
|
2021-12-19 16:03:08 -05:00
|
|
|
dnf -y 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 -y install \
|
|
|
|
boost-devel \
|
|
|
|
boost-static.x86_64 \
|
|
|
|
cmake \
|
|
|
|
ffmpeg-devel \
|
2021-12-19 18:03:50 -05:00
|
|
|
gcc-c++ \
|
2021-12-19 16:03:08 -05:00
|
|
|
libevdev-devel \
|
|
|
|
libX11-devel \
|
2022-04-18 14:53:28 -04:00
|
|
|
libxcb-devel \
|
2021-12-19 16:03:08 -05:00
|
|
|
libXcursor-devel \
|
|
|
|
libXfixes-devel \
|
|
|
|
libXinerama-devel \
|
|
|
|
libXi-devel \
|
|
|
|
libXrandr-devel \
|
|
|
|
libXtst-devel \
|
|
|
|
mesa-libGL-devel \
|
|
|
|
openssl-devel \
|
|
|
|
opus-devel \
|
|
|
|
pulseaudio-libs-devel \
|
2022-05-14 12:16:14 +02:00
|
|
|
libcap-devel \
|
|
|
|
libdrm-devel \
|
2022-04-12 20:29:08 -07:00
|
|
|
rpm-build \
|
2021-12-19 14:55:53 -05:00
|
|
|
&& dnf clean all \
|
|
|
|
&& rm -rf /var/cache/yum
|
2021-12-19 10:40:11 -05:00
|
|
|
|
2022-03-15 19:17:22 -04:00
|
|
|
# Entrypoint
|
2021-12-19 10:40:11 -05:00
|
|
|
COPY build-private.sh /root/build.sh
|
2022-04-12 20:29:08 -07:00
|
|
|
ENTRYPOINT ["/root/build.sh", "-rpm"]
|