From c37b4ae9321a6988cdc45dfc886b9e368866ba80 Mon Sep 17 00:00:00 2001 From: TJ Borromeo Date: Mon, 21 Sep 2015 18:52:34 -0700 Subject: [PATCH] Bump versioning Pointing out that node's opencv is locked to v3.2.0. This should be updated (IMO) whenever it is known that node's opencv is stable and that prebuilt binaries are checked into the osx-binaries branch. --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 828aa3b..2327dd9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,10 @@ # 2) Build: wget https://raw.github.com/dotcloud/docker/v0.1.6/contrib/docker-build/docker-build && python docker-build $USER/node-opencv < Dockerfile # 3) Test: docker run $USER/node-opencv node -e "console.log(require('opencv').version)" # -# VERSION 0.1 -# DOCKER-VERSION 0.1.6 +# VERSION 0.2 +# DOCKER-VERSION 8.1.2 -# update to 14.04, but lock versions at 12.04 for now +# update to 14.04 from ubuntu:14.04 run apt-get update -qq run apt-get install -y software-properties-common python-software-properties @@ -16,4 +16,5 @@ run apt-get update run apt-get install -y libcv-dev libcvaux-dev libhighgui-dev libopencv-dev run curl -sL https://deb.nodesource.com/setup | bash - run apt-get install -y nodejs +# ensure npm installs at v3.2.0 vice tip run npm install opencv@3.2.0 || cat npm-debug.log