1
0
intel-media-ffmpeg/templates/08-intel-certs.in
James Ketrenos dbe268a2e6 Moved base OS image from osgc-ubuntu to internally cached ubuntu
Signed-off-by: James Ketrenos <james.p.ketrenos@intel.com>
2019-09-23 19:31:39 -07:00

17 lines
686 B
Plaintext

# Install Intel CA5A cert so Intel certs are recognized
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
ca-certificates \
wget \
unzip \
&& mkdir -p /usr/local/share/ca-certificates \
&& wget -qO tmp.zip http://certificates.intel.com/repository/certificates/IntelSHA2RootChain-Base64.zip \
&& unzip tmp.zip -d /usr/local/share/ca-certificates \
&& rm tmp.zip \
&& wget -qO tmp.zip http://certificates.intel.com/repository/certificates/Intel%20Root%20Certificate%20Chain%20Base64.zip \
&& unzip tmp.zip -d /usr/local/share/ca-certificates \
&& rm tmp.zip \
&& update-ca-certificates --fresh