Explorar o código

Merge pull request #16 from nvllsvm/docker

Add initial Docker
Andrew Rabert %!s(int64=6) %!d(string=hai) anos
pai
achega
9d00510119
Modificáronse 3 ficheiros con 21 adicións e 2 borrados
  1. 1 0
      .dockerignore
  2. 19 0
      Dockerfile
  3. 1 2
      debian/rules

+ 1 - 0
.dockerignore

@@ -0,0 +1 @@
+.git

+ 19 - 0
Dockerfile

@@ -0,0 +1,19 @@
+ARG DOTNET_VERSION=2
+
+FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
+WORKDIR /repo
+COPY . .
+ARG CONFIGURATION=RELEASE
+RUN dotnet clean \
+ && dotnet build --configuration ${CONFIGURATION} $(pwd)/MediaBrowser.sln \
+ && dotnet publish --configuration ${CONFIGURATION} $(pwd)/MediaBrowser.sln --output /jellyfin
+
+FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
+COPY --from=builder /jellyfin /jellyfin
+RUN apt update \
+ && apt install -y ffmpeg gosu
+EXPOSE 8096
+VOLUME /config /media
+ENV PUID=1000 PGID=1000
+ENTRYPOINT chown $PUID:$PGID /config /media \
+ && gosu $PUID:$PGID dotnet /jellyfin/EmbyServer.dll -programdata /config

+ 1 - 2
debian/rules

@@ -14,8 +14,7 @@ override_dh_auto_test:
 override_dh_clistrip:
 
 override_dh_auto_build:
-	git submodule init
-	git submodule update
+	git submodule update --init
 	dotnet build --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln --output='$(CURDIR)/usr/lib/jellyfin/bin'
 	dotnet publish --configuration $(CONFIG) $(CURDIR)/MediaBrowser.sln --output='$(CURDIR)/usr/lib/jellyfin/bin'