Skip to content

Commit e32ceee

Browse files
committed
remove johnvansickle build
1 parent 6de12ee commit e32ceee

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ FROM python:3.13-alpine as base
33
FROM base as builder
44
RUN mkdir /ffmpeg
55
WORKDIR /ffmpeg
6-
RUN wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
7-
RUN tar -xf ffmpeg-release-amd64-static.tar.xz -C /ffmpeg --strip-components=1
6+
RUN wget https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-linux64-gpl.tar.xz
7+
RUN tar -xf ffmpeg-master-latest-linux64-gpl.tar.xz -C /ffmpeg --strip-components=1
88

99
FROM base
10-
COPY --from=builder /ffmpeg/ffmpeg /usr/local/bin
11-
COPY --from=builder /ffmpeg/ffprobe /usr/local/bin
10+
COPY --from=builder /ffmpeg/bin/ffmpeg /usr/local/bin
11+
COPY --from=builder /ffmpeg/bin/ffprobe /usr/local/bin
1212
RUN pip3 install ffmpeg-normalize
1313
RUN chmod +x /usr/local/bin/ffmpeg /usr/local/bin/ffprobe
1414

0 commit comments

Comments
 (0)