aboutsummaryrefslogtreecommitdiff
path: root/src/dotnet/install.sh
blob: 455d679cc980dd98fa63b94fe3b35e78c1a6529b (plain) (blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/bin/bash
#-------------------------------------------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
#-------------------------------------------------------------------------------------------------------------
#
# Docs: https://github.com/devcontainers/features/tree/main/src/dotnet
# Maintainer: The VS Code and Codespaces Teams

DOTNET_VERSION="${VERSION:-"latest"}"
DOTNET_ADDITIONAL_VERSIONS="${ADDITIONALVERSIONS:-""}"
DOTNET_RUNTIME_ONLY="${RUNTIMEONLY:-"false"}"

DOTNET_INSTALL_SCRIPT_URL='https://dot.net/v1/dotnet-install.sh'
DOTNET_INSTALL_SCRIPT='/tmp/dotnet-install.sh'
DOTNET_INSTALL_DIR='/usr/local/dotnet/current'

set -e

apt_get_update() {
    if [ "$(find /var/lib/apt/lists/* | wc -l)" = "0" ]; then
        echo "Running apt-get update..."
        apt-get update -y
    fi
}

# Checks if packages are installed and installs them if not
check_packages() {
    if ! dpkg -s "$@" > /dev/null 2>&1; then
        apt_get_update
        apt-get -y install --no-install-recommends "$@"
    fi
}

# Installs a version of .NET using the DOTNET_INSTALLER_SCRIPT
# The version must be 'latest', use the form 'N', or use the form 'N.M.O'
install_version() {
    local version="$1"
    local channel="LTS"
    local runtime_arg=""

    echo "Installing version '$version'..."

    # If version is just a major value (form 'N'), assume it is a channel
    if [[ "$version" =~ ^[0-9]+$ ]]; then
        channel="$version.0"
        version="latest"
    fi

    # Make sure the version is formatted correctly (form 'N' is handled before this)
    if ! [[ "$version" = "latest" || "$version" =~ ^[0-9]+.[0-9]+.[0-9]+$ ]]; then
        echo "Invalid version '$version': version must be 'latest' or use the form 'N.M.O'"
        return 1
    fi

    if [ "$DOTNET_RUNTIME_ONLY" = 'true' ]; then
        echo "Installing runtime only..."
        runtime_arg='--runtime dotnet'
    fi

    "$DOTNET_INSTALL_SCRIPT" \
        --install-dir "$DOTNET_INSTALL_DIR" \
        --version "$version" \
        --channel "$channel" \
        $runtime_arg
}

if [ "$(id -u)" -ne 0 ]; then
    echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.'
    exit 1
fi

# icu-devtools includes dependencies for .NET
check_packages wget ca-certificates icu-devtools

wget -O "$DOTNET_INSTALL_SCRIPT" "$DOTNET_INSTALL_SCRIPT_URL"
chmod +x "$DOTNET_INSTALL_SCRIPT"

# Install primary version
install_version "$DOTNET_VERSION"

# Install additional versions
if [ -n "$DOTNET_ADDITIONAL_VERSIONS" ]; then
    OLD_IFS=$IFS
    IFS=","
        read -a additional_versions <<< "$DOTNET_ADDITIONAL_VERSIONS"
        for version in "${additional_versions[@]}"; do
            # Trim whitespace from version
            version="$(echo -e "$version" | tr -d '[:space:]')"
            install_version "$version"
        done
    IFS=$OLD_IFS
fi

rm "$DOTNET_INSTALL_SCRIPT"

echo "Done!"