Update Node-CMU to 6.0.0

This commit is contained in:
Andreas Schwarz 2016-09-20 06:32:02 -07:00
parent 0fb8aea2f6
commit 3da28b834c
4 changed files with 11 additions and 6 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "casdk-runtime", "name": "casdk-runtime",
"description": "Write and deploy applications for the Mazda Infotainment System", "description": "Write and deploy applications for the Mazda Infotainment System",
"version": "0.0.4", "version": "0.0.5",
"homepage": "http://flyandi.github.io/mazda-custom-application-sdk/", "homepage": "http://flyandi.github.io/mazda-custom-application-sdk/",
"author": "Andy (flyandi) <flyandi@yahoo.com>", "author": "Andy (flyandi) <flyandi@yahoo.com>",
"repository": { "repository": {
@ -10,6 +10,8 @@
}, },
"license": "GPL-3.0", "license": "GPL-3.0",
"dependencies": { "dependencies": {
"ws": "^1.0.1" "ws": "^1.0.1",
"threads": "*"
} }
} }

2
src/node/.gitignore vendored
View file

@ -1 +1 @@
latest/ dist/

View file

@ -25,11 +25,11 @@
# #
# Docker Build Environment for CASDK-NODE # Docker Build Environment for CASDK-NODE
# #
FROM ubuntu FROM ubuntu:14.04.5
MAINTAINER Andy <flyandi@yahoo.com> MAINTAINER Andy <flyandi@yahoo.com>
# Configuration # Configuration
ENV NODE_VERSION=5.9.0 ENV NODE_VERSION=6.0.0
# Setup Enviroment Variables # Setup Enviroment Variables
WORKDIR /armv7l WORKDIR /armv7l

View file

@ -31,8 +31,11 @@
# Build container # Build container
docker build -t casdk-node . docker build -t casdk-node .
# Make folder
mkdir -p ../dist
# Copy release binary # Copy release binary
docker cp casdk-node:/armv7l/latest/node ../dist docker run --rm --entrypoint cat casdk-node /armv7l/latest/node > ../dist/node
# Validate # Validate
file ../dist/node file ../dist/node