mirror of
https://github.com/flyandi/mazda-custom-application-sdk
synced 2025-01-09 17:53:24 +00:00
Update Node-CMU to 6.0.0
This commit is contained in:
parent
0fb8aea2f6
commit
3da28b834c
4 changed files with 11 additions and 6 deletions
|
@ -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
2
src/node/.gitignore
vendored
|
@ -1 +1 @@
|
||||||
latest/
|
dist/
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue