Added a Dockerfile using ubuntu:15.10 as base

This commit is contained in:
Marko Viitanen 2016-03-09 11:12:50 +02:00
parent 1671725c72
commit e5439ced13

22
Dockerfile Normal file
View file

@ -0,0 +1,22 @@
FROM ubuntu:15.10
RUN apt-get update
RUN apt-get install -y \
automake \
autoconf \
libtool \
m4 \
build-essential \
git \
yasm
RUN git clone --depth=1 git://github.com/ultravideo/kvazaar.git
RUN cd kvazaar; \
./autogen.sh; \
./configure --disable-shared;\
make
COPY src/kvazaar /
RUN apt-get purge -y automake autoconf libtool m4 build-essential git yasm
RUN apt-get autoremove -y
RUN apt-get clean all
RUN rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/kvazaar"]
CMD ["--help"]