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

Update Dockerfile for Visual Studio 2015 CTP 5 projects #30

Closed
wants to merge 3 commits 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
13 changes: 12 additions & 1 deletion 1.0.0-beta2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ 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 install unzip git python

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 All @@ -23,4 +23,15 @@ RUN LIBUV_VERSION=1.0.0-rc2 \
&& rm -rf /usr/local/src/libuv-$LIBUV_VERSION \
&& ldconfig

ENV NODE_VERSION 0.10.35
WORKDIR /tmp
RUN curl -O http://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.gz
RUN tar xvfz node-v$NODE_VERSION.tar.gz
WORKDIR /tmp/node-v$NODE_VERSION
RUN ./configure --prefix=/usr
RUN make
RUN make install
RUN npm install -g grunt-cli
WORKDIR /

ENV PATH $PATH:$KRE_USER_HOME/packages/default/bin
12 changes: 12 additions & 0 deletions vs2015/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM microsoft/aspnet:1.0.0-beta2
RUN apt-get -qq update
RUN apt-get -qqy install git python
WORKDIR /tmp
RUN curl -O http://nodejs.org/dist/v0.10.35/node-v0.10.35.tar.gz
RUN tar xvfz node-v0.10.35.tar.gz
WORKDIR /tmp/node-v0.10.35
RUN ./configure --prefix=/usr
RUN make
RUN make install
RUN npm install -g grunt-cli