Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ ARG MEDIASDK_UBUNTU_DEB=libMediaSDK-dev_2.0-6_amd64_ubuntu18.04.deb
ENV PATH="${PATH}:/root/scripts"

RUN apt update && apt install software-properties-common -y && \
# For libjasper-dev
add-apt-repository 'deb http://security.ubuntu.com/ubuntu xenial-security main' && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 3B4FE6ACC0B21F32 && \
apt update && \
apt install curl git build-essential libjpeg-dev libtiff-dev libjasper-dev ffmpeg exiftool bc -y
apt install curl git build-essential libjpeg-dev libtiff-dev ffmpeg exiftool bc -y
WORKDIR /root
COPY ${MEDIASDK_UBUNTU_DEB} .
RUN dpkg -i ${MEDIASDK_UBUNTU_DEB}
Expand Down