mirror of
https://github.com/flyandi/mazda-custom-application-sdk
synced 2024-12-23 03:35:29 -06: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",
|
||||
"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/",
|
||||
"author": "Andy (flyandi) <flyandi@yahoo.com>",
|
||||
"repository": {
|
||||
|
@ -10,6 +10,8 @@
|
|||
},
|
||||
"license": "GPL-3.0",
|
||||
"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
|
||||
#
|
||||
FROM ubuntu
|
||||
FROM ubuntu:14.04.5
|
||||
MAINTAINER Andy <flyandi@yahoo.com>
|
||||
|
||||
# Configuration
|
||||
ENV NODE_VERSION=5.9.0
|
||||
ENV NODE_VERSION=6.0.0
|
||||
|
||||
# Setup Enviroment Variables
|
||||
WORKDIR /armv7l
|
||||
|
|
|
@ -31,8 +31,11 @@
|
|||
# Build container
|
||||
docker build -t casdk-node .
|
||||
|
||||
# Make folder
|
||||
mkdir -p ../dist
|
||||
|
||||
# Copy release binary
|
||||
docker cp casdk-node:/armv7l/latest/node ../dist
|
||||
docker run --rm --entrypoint cat casdk-node /armv7l/latest/node > ../dist/node
|
||||
|
||||
# Validate
|
||||
file ../dist/node
|
||||
|
|
Loading…
Reference in a new issue