2016-03-09 09:12:50 +00:00
|
|
|
FROM ubuntu:15.10
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y \
|
|
|
|
automake \
|
|
|
|
autoconf \
|
|
|
|
libtool \
|
|
|
|
m4 \
|
|
|
|
build-essential \
|
|
|
|
git \
|
2016-03-09 10:56:59 +00:00
|
|
|
yasm; \
|
|
|
|
git clone --depth=1 git://github.com/ultravideo/kvazaar.git; \
|
|
|
|
cd kvazaar; \
|
2016-03-09 09:12:50 +00:00
|
|
|
./autogen.sh; \
|
|
|
|
./configure --disable-shared;\
|
2016-03-09 10:56:59 +00:00
|
|
|
make;\
|
|
|
|
apt-get remove --purge -y automake autoconf libtool m4 build-essential git yasm `apt-mark showauto`; \
|
|
|
|
apt-get autoremove -y; \
|
|
|
|
apt-get clean all; \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2016-03-09 09:12:50 +00:00
|
|
|
COPY src/kvazaar /
|
|
|
|
ENTRYPOINT ["/kvazaar"]
|
|
|
|
CMD ["--help"]
|