Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions containers/point/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ FROM ubuntu:14.04

# uncomment 2 lines for latest node.js
RUN apt-get update; apt-get install -y apt-transport-https; echo deb https://deb.nodesource.com/node_4.x trusty main >> /etc/apt/sources.list
RUN apt-get update; apt-get install -y --force-yes nodejs git ssh-client python make g++ libkrb5-dev
RUN apt-get update; apt-get install -y --force-yes nodejs git ssh-client python make g++ libkrb5-dev wget

RUN mkdir -p /root/app

RUN npm install -g bower gulp ionic cordova
RUN npm cache clean -f; npm install -g n; n stable

RUN npm install -g bower gulp ionic@2.2.1 cordova@6.0.0

COPY ./root/app/package.json /root/app
RUN cd /root/app; npm update;
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"gulp-sass": "^2.0.4",
"gulp-concat": "^2.2.0",
"gulp-minify-css": "^0.3.0",
"gulp-rename": "^1.2.0"
"gulp-rename": "^1.2.0",
"gulp-util": "",
"bower": "",
"shelljs": ""
},
"devDependencies": {
"bower": "^1.3.3",
Expand Down
Loading