This commit is contained in:
Alexander Köplinger 2017-10-16 23:06:53 +02:00
Родитель 55b93b6b6b
Коммит d6dbacf7eb
3 изменённых файлов: 14 добавлений и 12 удалений

8
5.4.0.201/Dockerfile Normal file
Просмотреть файл

@ -0,0 +1,8 @@
FROM mono:5.4.0.201-slim
# MAINTAINER Jo Shields <jo.shields@xamarin.com>
# MAINTAINER Alexander Köplinger <alkpli@microsoft.com>
RUN apt-get update \
&& apt-get install -y binutils curl mono-devel ca-certificates-mono fsharp mono-vbnc nuget referenceassemblies-pcl \
&& rm -rf /var/lib/apt/lists/* /tmp/*

Просмотреть файл

@ -3,17 +3,11 @@ FROM debian:jessie-slim
# MAINTAINER Jo Shields <jo.shields@xamarin.com>
# MAINTAINER Alexander Köplinger <alkpli@microsoft.com>
# based on dockerfile by Michael Friis <friism@gmail.com>
ENV MONO_VERSION 5.0.1.1
RUN apt-get update \
&& apt-get install -y curl \
&& rm -rf /var/lib/apt/lists/*
ENV MONO_VERSION 5.4.0.201
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
RUN echo "deb http://download.mono-project.com/repo/debian jessie/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official.list \
&& apt-get update \
&& apt-get install -y binutils mono-devel ca-certificates-mono fsharp mono-vbnc nuget referenceassemblies-pcl \
&& apt-get install -y mono-runtime \
&& rm -rf /var/lib/apt/lists/* /tmp/*

Просмотреть файл

@ -4,15 +4,15 @@ set -e
# we want the current latest version, one minor version before that
# and the last version before a major version bump
aliases=(
'5.4.0 -> 5.4.0.201'
'5.4 -> 5.4.0.201'
'5 -> 5.4.0.201'
'5.2.0 -> 5.2.0.224'
'5.2 -> 5.2.0.224'
'5 -> 5.2.0.224'
'5.0.1 -> 5.0.1.1'
'5.0 -> 5.0.1.1'
'4.8.0 -> 4.8.0.524'
'4.8 -> 4.8.0.524'
'4 -> 4.8.0.524'
'latest -> 5.2.0.224'
'latest -> 5.4.0.201'
)
cd "$(dirname "${BASH_SOURCE[0]}")"