mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-23 18:14:06 +00:00
23 lines
592 B
Docker
23 lines
592 B
Docker
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"]
|