Skip to content

Commit 8d4cc85

Browse files
committed
chore(dockerfile): upgrade static-ffmpeg-upx image to 8.0
- Update the Dockerfile to use version 8.0 of the static-ffmpeg-upx image for ffmpeg, ffprobe, and dumb-init instead of version 7.1. Signed-off-by: Jim Chen <Jim@ChenJ.im>
1 parent 2dbcc0a commit 8d4cc85

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ WORKDIR /app
2121

2222
ARG UID
2323
# ffmpeg
24-
COPY --link --chown=$UID:0 --chmod=775 --from=ghcr.io/jim60105/static-ffmpeg-upx:7.1 /ffmpeg /usr/bin/
25-
COPY --link --chown=$UID:0 --chmod=775 --from=ghcr.io/jim60105/static-ffmpeg-upx:7.1 /ffprobe /usr/bin/
24+
COPY --link --chown=$UID:0 --chmod=775 --from=ghcr.io/jim60105/static-ffmpeg-upx:8.0 /ffmpeg /usr/bin/
25+
COPY --link --chown=$UID:0 --chmod=775 --from=ghcr.io/jim60105/static-ffmpeg-upx:8.0 /ffprobe /usr/bin/
2626

2727
# yt-dlp
2828
ADD --link --chown=$UID:0 --chmod=775 https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp_linux /usr/bin/yt-dlp
@@ -67,7 +67,7 @@ RUN install -d -m 775 -o $UID -g 0 /home/site/wwwroot && \
6767
install -d -m 775 -o $UID -g 0 /tmp
6868

6969
# dumb-init
70-
COPY --link --chown=$UID:0 --chmod=775 --from=ghcr.io/jim60105/static-ffmpeg-upx:7.1 /dumb-init /usr/bin/
70+
COPY --link --chown=$UID:0 --chmod=775 --from=ghcr.io/jim60105/static-ffmpeg-upx:8.0 /dumb-init /usr/bin/
7171

7272
COPY --link --chown=$UID:0 --chmod=775 --from=ghcr.io/tarampampam/curl:8.8.0 /bin/curl /bin/curl
7373
HEALTHCHECK --interval=10s --timeout=2s --retries=3 --start-period=20s CMD [ \

0 commit comments

Comments
 (0)