diff --git a/packaging/dotnet-core/prepare.py b/packaging/dotnet-core/prepare.py index 44d2d8e4..7f4d7bd7 100755 --- a/packaging/dotnet-core/prepare.py +++ b/packaging/dotnet-core/prepare.py @@ -17,8 +17,6 @@ MACOS = [ # --------------------- ----------------- # # Runtime ID Codename # # --------------------- ----------------- # - ( 'osx.10.10-x64', 'yosemite' ), - ( 'osx.10.11-x64', 'el_capitan' ), ( 'osx.10.12-x64', 'sierra' ), # --------------------- ----------------- # ] @@ -27,15 +25,7 @@ LINUX = [ # --------------------- ----------------- # # Runtime ID Docker Image # # --------------------- ----------------- # - ( 'centos.7-x64', 'centos:7.1.1503' ), - ( 'debian.8-x64', 'debian:8.2' ), - ( 'fedora.24-x64', 'fedora:24' ), - ( 'fedora.25-x64', 'fedora:25' ), - ( 'fedora.26-x64', 'fedora:26' ), - ( 'opensuse.42.1-x64', 'opensuse:42.1' ), - ( 'ubuntu.14.04-x64', 'ubuntu:trusty' ), - ( 'ubuntu.16.04-x64', 'ubuntu:xenial' ), - ( 'ubuntu.16.10-x64', 'ubuntu:yakkety' ), + ( 'linux-x64', 'debian:stretch' ), # --------------------- ----------------- # ] diff --git a/packaging/dotnet-core/recipes/linux-x64 b/packaging/dotnet-core/recipes/linux-x64 new file mode 100644 index 00000000..e22c9efc --- /dev/null +++ b/packaging/dotnet-core/recipes/linux-x64 @@ -0,0 +1,4 @@ +apt-get update +apt-get install -y --no-install-recommends build-essential + +. $(dirname $0)/build