You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
637 B
22 lines
637 B
6 years ago
|
ARG DOTNET_VERSION=3.0
|
||
|
|
||
|
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
|
||
|
WORKDIR /repo
|
||
|
COPY . .
|
||
6 years ago
|
#TODO Remove or update the sed line when we update dotnet version.
|
||
6 years ago
|
RUN export DOTNET_CLI_TELEMETRY_OPTOUT=1 \
|
||
|
&& find . -type f -exec sed -i 's/netcoreapp2.1/netcoreapp3.0/g' {} \; \
|
||
|
&& dotnet clean \
|
||
6 years ago
|
&& dotnet publish \
|
||
|
--configuration release \
|
||
6 years ago
|
--output /jellyfin \
|
||
|
Jellyfin.Server
|
||
6 years ago
|
|
||
6 years ago
|
FROM microsoft/dotnet:${DOTNET_VERSION}-runtime
|
||
6 years ago
|
COPY --from=builder /jellyfin /jellyfin
|
||
|
EXPOSE 8096
|
||
6 years ago
|
RUN apt-get update \
|
||
|
&& apt-get install -y ffmpeg
|
||
6 years ago
|
VOLUME /config /media
|
||
|
ENTRYPOINT dotnet /jellyfin/jellyfin.dll -programdata /config
|