implement bootstrapping without DNX
* fix up dnvm2 port * produce packages ready for CI to publish * remove dependency on DNX for stage0 (still needed for restore)
This commit is contained in:
parent
3a26e88deb
commit
ca4d160fc3
16 changed files with 1135 additions and 308 deletions
11
scripts/docker/Dockerfile
Normal file
11
scripts/docker/Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
# Dockerfile that creates a container suitable to build dotnet-cli
|
||||
FROM microsoft/aspnet:1.0.0-beta8-coreclr
|
||||
|
||||
# Temporary: Install Mono, we use MCS to bootstrap
|
||||
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF 2>&1 && \
|
||||
echo "deb http://download.mono-project.com/repo/debian nightly main" > /etc/apt/sources.list.d/mono-nightly.list && \
|
||||
apt-get -qqy update && \
|
||||
apt-get -qqy install mono-complete
|
||||
|
||||
# Set working directory
|
||||
WORKDIR /opt/code
|
Loading…
Add table
Add a link
Reference in a new issue