From 42641cdb5e5ad58a0805e0224ba1f157a8d56cea Mon Sep 17 00:00:00 2001 From: Marko Viitanen Date: Fri, 11 Mar 2016 13:34:28 +0200 Subject: [PATCH] Fix for Dockerfile: install kvazaar to the system --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ffdd17d..b3997779 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,12 +32,11 @@ MAINTAINER Marko Viitanen ./autogen.sh; \ ./configure --disable-shared;\ make;\ + make install; \ AUTOINSTALLED_PACKAGES=`apt-mark showauto`; \ apt-get remove --purge --force-yes -y $REQUIRED_PACKAGES $AUTOINSTALLED_PACKAGES; \ apt-get clean autoclean; \ apt-get autoremove -y; \ rm -rf /var/lib/{apt,dpkg,cache,log}/ - # Because we build only the static binary, copy that to the root - COPY src/kvazaar / -ENTRYPOINT ["/kvazaar"] +ENTRYPOINT ["kvazaar"] CMD ["--help"]