Bump for 6.10 release, also debian 9->10

This commit is contained in:
Joseph Shields 2020-07-22 15:12:01 -04:00
Родитель 909eb171b9
Коммит a449b2a57e
5 изменённых файлов: 14 добавлений и 12 удалений

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

@ -1,4 +1,4 @@
FROM mono:6.8.0.96-slim
FROM mono:6.10.0.104-slim
# MAINTAINER Jo Shields <jo.shields@xamarin.com>
# MAINTAINER Alexander Köplinger <alkpli@microsoft.com>

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

@ -1,9 +1,9 @@
FROM debian:stretch-slim
FROM debian:buster-slim
# MAINTAINER Jo Shields <jo.shields@xamarin.com>
# MAINTAINER Alexander Köplinger <alkpli@microsoft.com>
ENV MONO_VERSION 6.6.0.161
ENV MONO_VERSION 6.10.0.104
RUN apt-get update \
&& apt-get install -y --no-install-recommends gnupg dirmngr \
@ -16,7 +16,7 @@ RUN apt-get update \
&& apt-key list | grep Xamarin \
&& apt-get purge -y --auto-remove gnupg dirmngr
RUN echo "deb http://download.mono-project.com/repo/debian stable-stretch/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official-stable.list \
RUN echo "deb http://download.mono-project.com/repo/debian stable-buster/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official-stable.list \
&& apt-get update \
&& apt-get install -y mono-runtime \
&& rm -rf /var/lib/apt/lists/* /tmp/*

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

@ -1,4 +1,4 @@
FROM mono:6.6.0.161-slim
FROM mono:6.8.0.123-slim
# MAINTAINER Jo Shields <jo.shields@xamarin.com>
# MAINTAINER Alexander Köplinger <alkpli@microsoft.com>

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

@ -1,9 +1,9 @@
FROM debian:stretch-slim
FROM debian:buster-slim
# MAINTAINER Jo Shields <jo.shields@xamarin.com>
# MAINTAINER Alexander Köplinger <alkpli@microsoft.com>
ENV MONO_VERSION 6.8.0.96
ENV MONO_VERSION 6.8.0.123
RUN apt-get update \
&& apt-get install -y --no-install-recommends gnupg dirmngr \
@ -16,7 +16,7 @@ RUN apt-get update \
&& apt-key list | grep Xamarin \
&& apt-get purge -y --auto-remove gnupg dirmngr
RUN echo "deb http://download.mono-project.com/repo/debian stable-stretch/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official-vs.list \
RUN echo "deb http://download.mono-project.com/repo/debian stable-buster/snapshots/$MONO_VERSION main" > /etc/apt/sources.list.d/mono-official-stable.list \
&& apt-get update \
&& apt-get install -y mono-runtime \
&& rm -rf /var/lib/apt/lists/* /tmp/*

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

@ -4,14 +4,16 @@ set -e
# we want the current latest version, one minor version before that
# and the last version before a major version bump
aliases=(
'latest -> 6.8.0.96'
'6.8.0 -> 6.8.0.96'
'6.8 -> 6.8.0.96'
'latest -> 6.10.0.104'
'6.10.0 -> 6.10.0.104'
'6.10 -> 6.10.0.104'
'6.8.0 -> 6.8.0.123'
'6.8 -> 6.8.0.123'
'6.6.0 -> 6.6.0.161'
'6.6 -> 6.6.0.161'
'6.4.0 -> 6.4.0.198'
'6.4 -> 6.4.0.198'
'6 -> 6.8.0.96'
'6 -> 6.10.0.104'
'5.20.1 -> 5.20.1.34'
'5.20 -> 5.20.1.34'
'5.18.1 -> 5.18.1.28'