From 0d90836080662662eae7fda64042c036e0b06fdc Mon Sep 17 00:00:00 2001 From: Michael Friis Date: Sun, 18 Jan 2015 14:19:32 -0800 Subject: [PATCH] also install node.js and grunt on images --- 1.0.0-beta1/Dockerfile | 9 ++++++++- 1.0.0-beta2/Dockerfile | 9 ++++++++- nightly/Dockerfile | 9 ++++++++- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/1.0.0-beta1/Dockerfile b/1.0.0-beta1/Dockerfile index 03f6a4c8..b6458b26 100644 --- a/1.0.0-beta1/Dockerfile +++ b/1.0.0-beta1/Dockerfile @@ -3,7 +3,14 @@ FROM mono:3.10 ENV KRE_VERSION 1.0.0-beta1 ENV KRE_USER_HOME /opt/kre -RUN apt-get -qq update && apt-get -qqy install unzip +RUN apt-get -qq update && apt-get -qqy --no-install-recommends install \ + git \ + unzip + +# Install Node.js and Grunt +RUN curl -sL https://deb.nodesource.com/setup | bash - \ + && apt-get install -qqy nodejs \ + && npm install -g grunt-cli RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/v$KRE_VERSION/kvminstall.sh | sh RUN bash -c "source $KRE_USER_HOME/kvm/kvm.sh \ diff --git a/1.0.0-beta2/Dockerfile b/1.0.0-beta2/Dockerfile index 8f569033..98651242 100644 --- a/1.0.0-beta2/Dockerfile +++ b/1.0.0-beta2/Dockerfile @@ -3,7 +3,14 @@ FROM mono:3.10 ENV KRE_VERSION 1.0.0-beta2 ENV KRE_USER_HOME /opt/kre -RUN apt-get -qq update && apt-get -qqy install unzip +RUN apt-get -qq update && apt-get -qqy --no-install-recommends install \ + git \ + unzip + +# Install Node.js and Grunt +RUN curl -sL https://deb.nodesource.com/setup | bash - \ + && apt-get install -qqy nodejs \ + && npm install -g grunt-cli RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/v$KRE_VERSION/kvminstall.sh | sh RUN bash -c "source $KRE_USER_HOME/kvm/kvm.sh \ diff --git a/nightly/Dockerfile b/nightly/Dockerfile index 0304f707..b0542dc5 100644 --- a/nightly/Dockerfile +++ b/nightly/Dockerfile @@ -3,7 +3,14 @@ FROM mono:3.10 ENV KRE_FEED https://www.myget.org/F/aspnetvnext/api/v2 ENV KRE_USER_HOME /opt/kre -RUN apt-get -qq update && apt-get -qqy install unzip +RUN apt-get -qq update && apt-get -qqy --no-install-recommends install \ + git \ + unzip + +# Install Node.js and Grunt +RUN curl -sL https://deb.nodesource.com/setup | bash - \ + && apt-get install -qqy nodejs \ + && npm install -g grunt-cli ONBUILD RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/kvminstall.sh | sh ONBUILD RUN bash -c "source $KRE_USER_HOME/kvm/kvm.sh \