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

Commit 397bee2

Browse files
committed
Add support for beta3
1 parent d56b1d5 commit 397bee2

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

1.0.0-beta3/Dockerfile

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
FROM mono:3.12
2+
3+
ENV KRE_VERSION 1.0.0-beta3
4+
ENV KVM_USER_HOME /opt/kre
5+
6+
RUN apt-get -qq update && apt-get -qqy install unzip
7+
8+
RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/release/kvminstall.sh | KRE_USER_HOME=$KVM_USER_HOME KVM_BRANCH=v$KRE_VERSION sh
9+
RUN bash -c "source $KVM_USER_HOME/kvm/kvm.sh \
10+
&& kvm install $KRE_VERSION -a default \
11+
&& kvm alias default | xargs -i ln -s $KVM_USER_HOME/runtimes/{} $KVM_USER_HOME/runtimes/default"
12+
13+
# Install libuv for Kestrel from source code (binary is not in wheezy and one in jessie is still too old)
14+
RUN apt-get -qqy install \
15+
autoconf \
16+
automake \
17+
build-essential \
18+
libtool
19+
RUN LIBUV_VERSION=1.0.0-rc2 \
20+
&& curl -sSL https://github.com/joyent/libuv/archive/v${LIBUV_VERSION}.tar.gz | tar zxfv - -C /usr/local/src \
21+
&& cd /usr/local/src/libuv-$LIBUV_VERSION \
22+
&& sh autogen.sh && ./configure && make && make install \
23+
&& rm -rf /usr/local/src/libuv-$LIBUV_VERSION \
24+
&& ldconfig
25+
26+
ENV PATH $PATH:$KVM_USER_HOME/packages/default/bin

1.0.0-beta2/README.md renamed to 1.0.0-beta3/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ This project is part of ASP.NET 5. You can find samples, documentation, and gett
99

1010
## Supported tags
1111

12-
* [`1.0.0-beta2`, `latest` _(1.0.0-beta2/Dockerfile)_](https://github.com/aspnet/aspnet-docker/blob/master/1.0.0-beta2/Dockerfile)
12+
* [`1.0.0-beta3`, `latest` _(1.0.0-beta3/Dockerfile)_](https://github.com/aspnet/aspnet-docker/blob/master/1.0.0-beta3/Dockerfile)
13+
* [`1.0.0-beta2`, _(1.0.0-beta2/Dockerfile)_](https://github.com/aspnet/aspnet-docker/blob/master/1.0.0-beta2/Dockerfile)
1314
* [`1.0.0-beta1` _(1.0.0-beta1/Dockerfile)_](https://github.com/aspnet/aspnet-docker/blob/master/1.0.0-beta1/Dockerfile)
1415
* [`nightly` _(nightly/Dockerfile)_](https://github.com/aspnet/aspnet-docker/blob/master/nightly/Dockerfile)
1516

@@ -19,7 +20,7 @@ Please [read this article][webdev-article] on .NET Web Development and Tools Blo
1920

2021
This image provides the following environment variables:
2122

22-
* `KRE_USER_HOME`: path to KRE installation (e.g. /opt/kre)
23+
* `KVM_USER_HOME`: path to KRE installation (e.g. /opt/kre)
2324
* `KRE_VERSION`: version of KRE (K Runtime) installed (except the `nightly` image)
2425

2526
In addition to these, `PATH` is set to include the `k`/`kpm` executables.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-beta2/README.md
1+
1.0.0-beta3/README.md

0 commit comments

Comments
 (0)