diff options
| author | Anthony Lavado <anthonylavado@users.noreply.github.com> | 2019-09-02 15:45:52 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-02 15:45:52 -0400 |
| commit | e2577ea1c703b3030736485c26fe3cd2b0802ad9 (patch) | |
| tree | 10078cc022e407fe9b6d58a822e7c2f473d85cbf | |
| parent | ee637e8fecbcefe429babbbbd1325bce7c3fe991 (diff) | |
| parent | 11346c000e2b409b0e90ef319ad7a2f5b1311fd2 (diff) | |
Merge pull request #1707 from nvllsvm/default_build_arg
Fix default build arg
| -rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index a19ebcf2e..b4699d8e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ ARG DOTNET_VERSION=2.2 +ARG FFMPEG_VERSION=latest FROM mcr.microsoft.com/dotnet/core/sdk:${DOTNET_VERSION} as builder WORKDIR /repo @@ -7,7 +8,6 @@ ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 RUN bash -c "source deployment/common.build.sh && \ build_jellyfin Jellyfin.Server Release linux-x64 /jellyfin" -ARG FFMPEG_VERSION=latest FROM jellyfin/ffmpeg:${FFMPEG_VERSION} as ffmpeg FROM mcr.microsoft.com/dotnet/core/runtime:${DOTNET_VERSION} # libfontconfig1 is required for Skia |
