mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
Added a Dockerfile using ubuntu:15.10 as base
This commit is contained in:
parent
1671725c72
commit
e5439ced13
22
Dockerfile
Normal file
22
Dockerfile
Normal 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"]
|
Loading…
Reference in a new issue