mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
12 lines
587 B
Plaintext
12 lines
587 B
Plaintext
FROM fedora:33 AS sunshine-fedora_33
|
|
|
|
RUN dnf -y update && \
|
|
dnf -y group install "Development Tools" && \
|
|
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 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
|
|
|
|
COPY build-private.sh /root/build.sh
|
|
|
|
|
|
ENTRYPOINT ["/root/build.sh"]
|