forked from dotnet/dotnet-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOS.cs
41 lines (35 loc) · 1.53 KB
/
OS.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.DotNet.Docker.Tests
{
public class OS
{
// Alpine
public const string Alpine = "alpine";
public const string Alpine314 = "alpine3.14";
public const string Alpine315 = "alpine3.15";
// Debian
public const string Bullseye = "bullseye";
public const string BullseyeSlim = "bullseye-slim";
public const string Buster = "buster";
public const string BusterSlim = "buster-slim";
public const string Stretch = "stretch";
public const string StretchSlim = "stretch-slim";
// Mariner
public const string Mariner10 = "cbl-mariner1.0";
public const string Mariner10Distroless = "cbl-mariner1.0-distroless";
// Ubuntu
public const string Bionic = "bionic";
public const string Focal = "focal";
// Windows
public const string NanoServer1809 = "nanoserver-1809";
public const string NanoServer20H2 = "nanoserver-20H2";
public const string NanoServerLtsc2022 = "nanoserver-ltsc2022";
public const string ServerCoreLtsc2019 = "windowsservercore-ltsc2019";
public const string ServerCoreLtsc2022 = "windowsservercore-ltsc2022";
// Helpers
public const string AlpinePrefix = "alpine";
public const string SlimSuffix = "-slim";
}
}