mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-28 01:02:47 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM debian:10
 | |
| # Docker build arguments
 | |
| ARG SOURCE_DIR=/jellyfin
 | |
| ARG ARTIFACT_DIR=/dist
 | |
| ARG SDK_VERSION=5.0
 | |
| # Docker run environment
 | |
| ENV SOURCE_DIR=/jellyfin
 | |
| ENV ARTIFACT_DIR=/dist
 | |
| ENV DEB_BUILD_OPTIONS=noddebs
 | |
| ENV IS_DOCKER=YES
 | |
| 
 | |
| # Prepare Debian build environment
 | |
| RUN apt-get update \
 | |
|  && apt-get install -y apt-transport-https debhelper gnupg wget devscripts mmv libc6-dev libcurl4-openssl-dev libfontconfig1-dev libfreetype6-dev libssl-dev libssl1.1 liblttng-ust0
 | |
| 
 | |
| # Install dotnet repository
 | |
| # https://dotnet.microsoft.com/download/linux-package-manager/debian9/sdk-current
 | |
| RUN wget https://download.visualstudio.microsoft.com/download/pr/e1c236ec-c392-4eaa-a846-c600c82bb7f6/b13bd8b69f875f87cf83fc6f5457bcdf/dotnet-sdk-5.0.301-linux-x64.tar.gz -O dotnet-sdk.tar.gz \
 | |
|  && mkdir -p dotnet-sdk \
 | |
|  && tar -xzf dotnet-sdk.tar.gz -C dotnet-sdk \
 | |
|  && ln -s $( pwd )/dotnet-sdk/dotnet /usr/bin/dotnet
 | |
| 
 | |
| # Link to docker-build script
 | |
| RUN ln -sf ${SOURCE_DIR}/deployment/build.portable /build.sh
 | |
| 
 | |
| VOLUME ${SOURCE_DIR}/
 | |
| 
 | |
| VOLUME ${ARTIFACT_DIR}/
 | |
| 
 | |
| ENTRYPOINT ["/build.sh"]
 |