mirror of
https://github.com/linuxserver/docker-ffmpeg.git
synced 2026-02-20 04:56:23 +08:00
35 lines
646 B
Docker
35 lines
646 B
Docker
FROM lsiobase/ffmpeg:arm64v8-bin as binstage
|
|
FROM lsiobase/ubuntu:arm64v8-bionic
|
|
|
|
# Add files from binstage
|
|
COPY --from=binstage / /
|
|
|
|
# set version label
|
|
ARG BUILD_DATE
|
|
ARG VERSION
|
|
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
|
|
LABEL maintainer="thelamer"
|
|
|
|
RUN \
|
|
echo "**** install runtime ****" && \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
libexpat1 \
|
|
libfontconfig1 \
|
|
libglib2.0-0 \
|
|
libgomp1 \
|
|
libharfbuzz0b \
|
|
libv4l-0 \
|
|
libx11-6 \
|
|
libxcb1 \
|
|
libxext6 \
|
|
libxml2 && \
|
|
echo "**** clean up ****" && \
|
|
rm -rf \
|
|
/var/lib/apt/lists/* \
|
|
/var/tmp/*
|
|
|
|
COPY /root /
|
|
|
|
ENTRYPOINT ["/ffmpegwrapper.sh"]
|