aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbfayers <bfayers@users.noreply.github.com>2019-01-05 00:41:23 +0000
committerbfayers <bfayers@users.noreply.github.com>2019-01-05 00:41:23 +0000
commit227f9da3e5f5a247e9b85abe2d150aa5ffe9fc72 (patch)
treed36bf04270d936b56e4b5fce35d4f6a48f4be714
parent4c03616affe954c84a2a30291526e9a4893d555b (diff)
helps if the arg is within that bit of the dockerfile
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index ccb136460..47414ad12 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,4 @@
ARG DOTNET_VERSION=2
-ARG FFMPEG_URL=https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-4.0.3-64bit-static.tar.xz
FROM microsoft/dotnet:${DOTNET_VERSION}-sdk as builder
WORKDIR /repo
@@ -14,6 +13,7 @@ EXPOSE 8096
VOLUME /config /media
+ARG FFMPEG_URL=https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-4.0.3-64bit-static.tar.xz
RUN apt update \
&& apt install -y xz-utils \
&& curl ${FFMPEG_URL} | tar Jxf - -C /usr/bin --wildcards --strip-components=1 ffmpeg*/ffmpeg ffmpeg*/ffprobe \