1
0
intel-media-ffmpeg/Dockerfile
James P. Ketrenos 773600fb03 mv cmd_encode => cmd_decode and added cmd_encode helper
Signed-off-by: James P. Ketrenos <james.p.ketrenos@intel.com>
2019-09-18 17:02:56 -07:00

173 lines
5.4 KiB
Docker

#
# DO NOT EDIT THIS DOCKERFILE
#
# This file is auto-generated via scripts/build-dockerfile
# by using environment substitution while concatenating the
# contents of templates/*, and then adding the contents
# of Dockerfile.solution
#
# Most solution specific changes should be isolated in
# Dockerfile.solution. After making changes, you can
# then re-run scripts/build-dockerfile
#
#
# Template begins here (from templates/templates/00-FROM.in)
#
# Creates a base OSGC Intel enabled Ubuntu image
#
# Derivatives include -dev variation which adds git, build-essentials,
# source repos, etc.
#
FROM amr-registry.caas.intel.com/vtt-osgc/os/osgc-ubuntu:disco
#
# Template begins here (from templates/templates/05-intel-proxy.in)
#
# Pre-install proxy configuration values
#
# This uses the linux-ftp.ostc.intel.com as a mirror.
RUN echo "Acquire::http::proxy \"http://proxy-chain.intel.com:911/\";\n" \
"Acquire::https::proxy \"https://proxy-chain.intel.com:911/\";\n" \
"Acquire::ftp::proxy \"ftp://proxy-chain.intel.com:911/\";\n" \
"Acquire::socks::proxy \"socks://proxy-chain.intel.com:1080/\";\n" \
"Acquire::http::Proxy::linux-ftp.ostc.intel.com DIRECT;\n" \
"Acquire::http::Proxy::osgc.jf.intel.com DIRECT;\n" > /etc/apt/apt.conf
#
# Template begins here (from templates/templates/10-default-packages.in)
#
# Update the repo lists and then install things using the internal
# sources. Packages used by many developers are pulled into this image
# but we do want it to be relatively small.
#
# NOTE: We use DEBIAN_FRONTEND=noninteractive to prevent krb5-user from
# trying to prompt for configuration details during install.
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install \
-y --no-install-recommends -q \
net-tools \
iputils-ping \
sudo \
wget \
locales \
software-properties-common
# Set up locales
RUN localedef -c -f UTF-8 -i en_US en_US.UTF-8
ENV LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8
#
# Template begins here (from templates/templates/20-create-agama-user.in)
#
# Create user 'agama' and add them to 'sudo' for sudo access and set
# the passwd to 'agama'
#
# NOTE: Requires 'sudo' package to already be installed
RUN groupadd -r agama \
&& useradd --no-log-init \
-s /bin/bash \
-r -m \
-g agama \
-G sudo \
-p $(echo "agama" | openssl passwd -stdin) agama
# Set 'sudo' to NOPASSWD for all container users
RUN sed -i -e 's,%sudo.*,%sudo ALL=(ALL) NOPASSWD:ALL,g' /etc/sudoers
#
# Template begins here (from templates/templates/25-install-agama.in)
#
# Update and install gpg-agent as it isn't in the base Ubuntu image and is needed for apt-key
RUN apt-get -q update \
&& DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends -q -y install \
gpg-agent
# Fetch and install the signing key for OSGC's Agama repository
RUN wget --no-proxy --quiet -O /tmp/aptly.key http://osgc.jf.intel.com/packages/agama/ubuntu/aptly_repo_signing.key \
&& APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=DontWarn apt-key add /tmp/aptly.key \
&& rm /tmp/aptly.key
# Add internal Agama repository
RUN apt-add-repository "deb [arch=amd64] http://osgc.jf.intel.com/packages/agama/ubuntu disco main"
# Update and install the Mesa, OpenCL, and Media from Agama
RUN apt-get -q update \
&& DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends -q -y install \
libgl1-mesa-glx=19.1.0.agama-171 libgl1-mesa-dri=19.1.0.agama-171 \
intel-opencl=19.38.171 \
intel-media=2.10.171 libva2=2.6.0.agama-171 \
ocl-icd-libopencl1 \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
#
# Solution begins here (from Dockerfile.solution)
#
#
# Docker.solution based on the Intel-Media-SDK instructions available here:
#
# https://github.com/Intel-Media-SDK/MediaSDK/wiki/Build-and-use-ffmpeg-with-MediaSDK
#
# This should really be part of a multi-stage build so the final
# image isn't polluted with build artifacts
#
# NOTE: This image will only work with Ubuntu 19.04 (disco) and newer
# Install git and build tools, clone ffmpeg, and get ready to build it
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get -q -y install \
git build-essential pkg-config
# Clone ffmpeg
# NOTE: This explicitly clones the FFMPEG_TAG_VERSION (see SOLUTIONS)
RUN git clone --depth 1 --branch n4.2.1 https://github.com/ffmpeg/ffmpeg /home/agama/ffmpeg
# Install all required common packages:
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get -q -y install \
libva-dev=2.6.0.agama-171 \
libmfx-dev=19.2.pre3.agama-171 \
libmfx1=19.2.pre3.agama-171 \
vainfo \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
ENV LIBVA_DRIVER_NAME=iHD
# Build FFmpeg
WORKDIR /home/agama/ffmpeg
RUN ./configure --arch=x86_64 --disable-yasm --enable-vaapi --enable-libmfx \
&& make \
&& make install
# ffmpeg is installed; the build and source trees are no longer needed
# RUN rm -rf /home/agama/ffmpeg
COPY assets/* /assets/
ENTRYPOINT [ "/assets/entry" ]
#
# Standard ending begins here (from templates/ending.in)
#
# NOTE: This should be added as the last template entry
# as it will always modify a layer (since the Dockerfile
# changes,) causing all subsequent layers to be
# regenerated.
# Clean up APT content that might still be around
#RUN apt-get clean autoclean \
# && apt-get autoremove -y \
# && rm -rf /var/lib/${apt,dpkg,cache,log}
# Ensure that each Docker container self-documents the
# versions included in it
ENV AGAMA_VERSION=171
COPY MANIFEST SOLUTION Dockerfile /assets/