Skip to content
This repository was archived by the owner on May 31, 2019. It is now read-only.

also install node.js and grunt on images #28

Closed
wants to merge 1 commit into from
Closed
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
9 changes: 8 additions & 1 deletion 1.0.0-beta1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
9 changes: 8 additions & 1 deletion 1.0.0-beta2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
9 changes: 8 additions & 1 deletion nightly/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down