Skip to content
This repository was archived by the owner on Sep 18, 2023. It is now read-only.
Open
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ MAINTAINER Maxwell Bates <maxwell.bates@autodesk.com>
RUN apt-get update
RUN apt-get install curl -y
RUN apt-get install git -y
RUN apt-get install make -y
RUN apt-get install g++ -y

#Node.js https://nodesource.com/blog/nodejs-v012-iojs-and-the-nodesource-linux-repositories
RUN curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
RUN curl -sL https://deb.nodesource.com/setup_10.x | sudo bash -
RUN apt-get install -y nodejs

RUN npm install -g grunt-cli
RUN npm install -g bower
RUN npm install -g forever
RUN npm install -g nodemon@dev
RUN npm install -g nodemon

ENV APP /app

Expand Down