mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Replace ADD with RUN, causes less cache invalidation
This commit is contained in:
parent
bee55c04c8
commit
dd9665ae02
1 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@ RUN make buildall
|
||||||
# Download and unpack static ffmpeg
|
# Download and unpack static ffmpeg
|
||||||
ARG FFMPEG_VERSION=4.1.4
|
ARG FFMPEG_VERSION=4.1.4
|
||||||
ARG FFMPEG_URL=https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-${FFMPEG_VERSION}-amd64-static.tar.xz
|
ARG FFMPEG_URL=https://www.johnvansickle.com/ffmpeg/old-releases/ffmpeg-${FFMPEG_VERSION}-amd64-static.tar.xz
|
||||||
ADD ${FFMPEG_URL} /tmp/ffmpeg.tar.xz
|
RUN wget -O /tmp/ffmpeg.tar.xz ${FFMPEG_URL}
|
||||||
RUN cd /tmp && tar xJf ffmpeg.tar.xz
|
RUN cd /tmp && tar xJf ffmpeg.tar.xz && rm ffmpeg.tar.xz
|
||||||
|
|
||||||
|
|
||||||
#####################################################
|
#####################################################
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue