initial commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
*~
|
||||
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM alpine AS tmp
|
||||
COPY build-ffmpeg /root/build-ffmpeg
|
||||
RUN apk add --no-cache gcc g++ musl-dev make automake autoconf bash curl linux-headers diffutils patch && \
|
||||
cd /root/ && \
|
||||
chmod +x build-ffmpeg && \
|
||||
NUMJOBS=12 ./build-ffmpeg -b --enable-gpl-and-non-free --full-static
|
||||
|
||||
FROM alpine
|
||||
COPY --from=tmp /usr/local/bin/ffmpeg /usr/bin/ffmpeg
|
||||
ENTRYPOINT ["/usr/bin/ffmpeg"]
|
||||
CMD ["-h"]
|
||||
1044
build-ffmpeg
Executable file
1044
build-ffmpeg
Executable file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user