Skip to content

Commit

Permalink
Ship 3.12.0 images
Browse files Browse the repository at this point in the history
  • Loading branch information
directhex committed Jan 14, 2015
1 parent 96aca22 commit b7fd8e1
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
19 changes: 19 additions & 0 deletions 3.12.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
FROM debian:wheezy

MAINTAINER Jo Shields <[email protected]>

#based on dockerfile by Michael Friis <[email protected]>

RUN apt-get update \
&& apt-get install -y curl
&& rm -rf /var/lib/apt/lists/*

RUN apt-key adv --keyserver pgp.mit.edu --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF

RUN echo "deb http://download.mono-project.com/repo/debian wheezy/snapshots/3.12.0 main" > /etc/apt/sources.list.d/mono-xamarin.list \
&& apt-get update \
&& apt-get install -y mono-devel fsharp mono-vbnc nuget \
&& rm -rf /var/lib/apt/lists/*

RUN mozroots --machine --import --sync --quiet

12 changes: 12 additions & 0 deletions 3.12.0/onbuild/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM mono:3.12.0

MAINTAINER Jo Shields <[email protected]>

RUN mkdir -p /usr/src/app/{source,build}
WORKDIR /usr/src/app/source

ONBUILD ADD . /usr/src/app/source
ONBUILD RUN nuget restore -NonInteractive
ONBUILD RUN xbuild /property:Configuration=Release /property:OutDir=/usr/src/app/build/
ONBUILD RUN rm -rf /usr/src/app/source
ONBUILD WORKDIR /usr/src/app/build
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Supported tags and `Dockerfile` links

- [`latest` (*Dockerfile*)](https://github.com/mono/docker/blob/master/3.10.0/Dockerfile)
- [`onbuild` (*onbuild/Dockerfile*)](https://github.com/mono/docker/blob/master/3.10.0/onbuild/Dockerfile)
- [`latest` (*Dockerfile*)](https://github.com/mono/docker/blob/master/3.12.0/Dockerfile)
- [`onbuild` (*onbuild/Dockerfile*)](https://github.com/mono/docker/blob/master/3.12.0/onbuild/Dockerfile)
- [`3.12.0` (*Dockerfile*)](https://github.com/mono/docker/blob/master/3.12.0/Dockerfile)
- [`3.12.0-onbuild` (*onbuild/Dockerfile*)](https://github.com/mono/docker/blob/master/3.12.0/onbuild/Dockerfile)
- [`3.10.0` (*Dockerfile*)](https://github.com/mono/docker/blob/master/3.10.0/Dockerfile)
- [`3.10.0-onbuild` (*onbuild/Dockerfile*)](https://github.com/mono/docker/blob/master/3.10.0/onbuild/Dockerfile)
- [`3.8.0` (*Dockerfile*)](https://github.com/mono/docker/blob/master/3.8.0/Dockerfile)
Expand Down

0 comments on commit b7fd8e1

Please sign in to comment.