mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 18:09:12 +03:00
Add Dockerfile to build Debian package #9
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @andrewrabert on GitHub (Dec 10, 2018).
Building packages often requires multiple steps and customized environments. Having a Dockerfile to build the Debian package:
In other words - one should be able to build a Debian package doing nothing more than this. This example assumes https://github.com/jellyfin/jellyfin/issues/18 has been implemented.
@joshuaboniface commented on GitHub (Dec 10, 2018):
The current build procedure is just as simple and has no dependency on Docker, just on the
dotnet-sdk-2.1package and standarddebuildframework - with Mono it was a nightmare, but luckily .NET Core made this a lot easier. However I don't see a reason we can't do both, as long as the Docker setup doesn't preclude doing it the old-fashioned non-Docker way.@andrewrabert commented on GitHub (Dec 10, 2018):
@joshuaboniface One of the intentions of having this in addition to the Debian build files is that it will make CI/CD integration much nicer.
@joshuaboniface commented on GitHub (Dec 10, 2018):
Yup agreed on the CI integration, just wanted to be sure!