generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
143 lines (118 loc) · 3.86 KB
/
install.sh
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
#!/usr/bin/env bash
#
# This script installs Aider into a devcontainer.
#
# NOTE(ivy): @marcozac has some great optimizations for reducing layer size.
# See https://github.com/marcozac/devcontainer-features/blob/89d2a85f360a46eb74fc512080c19e10e40d357c/src/shellcheck/library_scripts.sh
#
[ -n "$DEBUG" ] && set -o xtrace
set -o errexit
set -o nounset
set -o pipefail
# Version of Aider to install.
AIDER_VERSION="${VERSION:-latest}"
# Whether to install Playwright for web scraping.
INSTALLPLAYWRIGHT="${INSTALLPLAYWRIGHT:-true}"
# Browsers to install for Playwright.
INSTALLPLAYWRIGHTBROWSERS="${INSTALLPLAYWRIGHTBROWSERS:-chromium}"
# Username to install Aider for.
USERNAME="${USERNAME:-"${_REMOTE_USER:-automatic}"}"
# Detect the Linux distribution ID. Adjust to account for derivatives.
detect_adjusted_id() {
if [ ! -r /etc/os-release ]; then
echo "WARN: Unable to detect the OS release." >&2
return
fi
# shellcheck disable=SC1091
source /etc/os-release
case "${ID:-unknown}" in
debian|ubuntu)
ADJUSTED_ID=debian
;;
*)
ADJUSTED_ID="${ID:-unknown}"
;;
esac
}
# Detect the username to use for the installation. This code is adapted from the
# official devcontainer Python feature.
detect_username() {
local possible_users=(
vscode
node
codespace
"$(awk -v val=1000 -F ":" '$3==val{print $1}' /etc/passwd)"
)
# Determine the appropriate non-root user.
if [ "$USERNAME" = auto ] || [ "$USERNAME" = automatic ]; then
USERNAME=
for user in "${possible_users[@]}"; do
if id -u "$user" &>/dev/null; then
# Use the first user found.
USERNAME="$user"
break
fi
done
if [ -z "$USERNAME" ]; then
# If there is no non-root user, use the default username.
USERNAME=root
fi
elif [ "$USERNAME" = none ] || ! id -u "$USERNAME" &>/dev/null; then
# If the specified user does not exist or is unspecified, use default.
USERNAME=root
fi
}
as_user() {
# HACK(ivy): PS1=true works around an edge case where pipx isn't added
# to the PATH. This happens with the `mcr.microsoft.com/devcontainers/base:ubuntu`
# image which includes a check at the top of /etc/bash.bashrc which
# returns in non-interactive shells.
if [ "$USERNAME" = root ]; then
bash -c "PS1=true; . /etc/bash.bashrc || true; $1"
else
su - "$USERNAME" bash -c "PS1=true; . /etc/bash.bashrc || true; $1"
fi
}
# Install Aider using pipx.
install_aider() {
if [ "$AIDER_VERSION" = latest ]; then
as_user 'pipx install aider-chat'
else
as_user "pipx install aider-chat==${AIDER_VERSION}"
fi
}
install_playwright() {
local browsers
if [ "$INSTALLPLAYWRIGHT" != true ]; then
return
fi
as_user 'pipx inject --include-apps --include-deps aider-chat playwright'
if [ -n "$INSTALLPLAYWRIGHTBROWSERS" ]; then
# Split $INSTALLPLAYWRIGHTBROWSERS by comma into an array and bind it to $browsers.
IFS=, read -r -a browsers <<< "$INSTALLPLAYWRIGHTBROWSERS"
echo "Installing Playwright browsers: $INSTALLPLAYWRIGHTBROWSERS..."
as_user "playwright install --with-deps ${browsers[*]}"
fi
}
# Clean up caches and temporary files.
clean_up() {
# Clean up pipx cache.
as_user 'pipx runpip aider-chat cache purge'
if [ "$ADJUSTED_ID" = debian ]; then
rm -fr /var/lib/apt/lists/*
fi
}
# Main entrypoint
main() {
if [ "$(id -u)" -ne 0 ]; then
echo 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' >&2
exit 1
fi
detect_adjusted_id
detect_username
install_aider
install_playwright
clean_up
echo "Aider has been installed!"
}
main