mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 16:33:25 -03:00
* Fix fedora
* Fix RID Linux
* Fix package and image versions
* Fix buildling and optimize docker images
```
* Removed find obj
* Changed curl command and added gpg
* Added to Contributors
* Removed apt-transport-https package
* Removed RASPI
* Update Intel drivers version
* Update Dockerfile for CentOS, Fedora, and portable deployments
- Changed Jammy docker image to Built-in Jammy Microsoft .NET SDK image
- Switched from using "Yum" to "Dnf" for CentOS and Fedora
- Added "dnf clean all" and "rm -rf /var/cache/dnf" to the end of CentOS and Fedora Dockerfiles
- Added "apt-get clean", "apt-get autoremove", "rm -rf /var/lib/apt/lists/*" to the end of the Debian/Ubuntu Dockerfiles
- Added ${DOTNET_VERSION} in every Dockerfile except CentOS/Fedora
- Removed previous warning comment for dotnet publish build in parallel
- Arranged package installation
* Re-arranged Dockerfile package installation
* Re-align
* Remove curl
* Remove curl
40 lines
1.1 KiB
Markdown
40 lines
1.1 KiB
Markdown
# Jellyfin RPM
|
|
|
|
## Build Fedora Package with docker
|
|
|
|
Change into this directory `cd rpm-package`
|
|
Run the build script `./build-fedora-rpm.sh`.
|
|
Resulting RPM and src.rpm will be in `../../jellyfin-*.rpm`
|
|
|
|
## ffmpeg
|
|
|
|
The RPM package for Fedora/CentOS requires some additional repositories as ffmpeg is not in the main repositories.
|
|
|
|
```shell
|
|
# ffmpeg from RPMfusion free
|
|
# Fedora
|
|
$ sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
|
|
# CentOS 8
|
|
$ sudo dnf localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-8.noarch.rpm
|
|
# CentOS 9
|
|
$ sudo dnf localinstall --nogpgcheck https://download1.rpmfusion.org/free/el/rpmfusion-free-release-9.noarch.rpm
|
|
```
|
|
|
|
## Building with dotnet
|
|
|
|
Jellyfin is build with `--self-contained` so no dotnet required for runtime.
|
|
|
|
```shell
|
|
# dotnet required for building the RPM
|
|
# Fedora
|
|
$ sudo dnf copr enable @dotnet-sig/dotnet
|
|
# CentOS 8
|
|
$ sudo rpm -Uvh https://packages.microsoft.com/config/rhel/8/packages-microsoft-prod.rpm
|
|
# CentOS 9
|
|
$ sudo rpm -Uvh https://packages.microsoft.com/config/rhel/9/packages-microsoft-prod.rpm
|
|
```
|
|
|
|
## TODO
|
|
|
|
- [ ] OpenSUSE
|