uvg266/Dockerfile
Marko Viitanen 1ef0332cbe Modified Dockerfile to execute in a single "RUN" and remove "apt-mark showauto"
- Decreases docker image size 400MB -> 180MB
2016-03-09 12:56:59 +02:00

23 lines
629 B
Docker

FROM ubuntu:15.10
RUN apt-get update
RUN apt-get install -y \
automake \
autoconf \
libtool \
m4 \
build-essential \
git \
yasm; \
git clone --depth=1 git://github.com/ultravideo/kvazaar.git; \
cd kvazaar; \
./autogen.sh; \
./configure --disable-shared;\
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/*
COPY src/kvazaar /
ENTRYPOINT ["/kvazaar"]
CMD ["--help"]