generated from devcontainers/feature-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sh
More file actions
executable file
·125 lines (103 loc) · 3.51 KB
/
install.sh
File metadata and controls
executable file
·125 lines (103 loc) · 3.51 KB
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
#!/usr/bin/env bash
: ${VERSION:="latest"}
USERNAME=${USERNAME:-${_REMOTE_USER:-"automatic"}}
set -e
export TMPDIR=$(mktemp -d /tmp/feature.XXXXXX)
trap "rm -rf $TMPDIR" EXIT
# Clean up
rm -rf /var/lib/apt/lists/*
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
architecture="$(dpkg --print-architecture)"
if [ "${architecture}" != "amd64" ] && [ "${architecture}" != "arm64" ]; then
echo "(!) Architecture $architecture unsupported"
exit 1
fi
# Determine the appropriate non-root user
if [ "${USERNAME}" = "auto" ] || [ "${USERNAME}" = "automatic" ]; then
USERNAME=""
POSSIBLE_USERS=("vscode" "node" "codespace" "$(awk -v val=1000 -F ":" '$3==val{print $1}' /etc/passwd)")
for CURRENT_USER in "${POSSIBLE_USERS[@]}"; do
if id -u "${CURRENT_USER}" >/dev/null 2>&1; then
USERNAME=${CURRENT_USER}
break
fi
done
if [ "${USERNAME}" = "" ]; then
USERNAME=root
fi
elif [ "${USERNAME}" = "none" ] || ! id -u ${USERNAME} >/dev/null 2>&1; then
USERNAME=root
fi
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
}
check_git() {
if [ ! -x "$(command -v git)" ]; then
check_packages git
fi
}
export DEBIAN_FRONTEND=noninteractive
### BEGIN install
if [ "${VERSION}" = "none" ]; then
echo "Skipping Specify CLI installation..."
exit 0
fi
# Install prerequisites
# echo "Installing prerequisites..."
# check_packages python3 python3-pip python3-venv ca-certificates curl
# check_git
# Install uv (the modern Python package manager)
echo "Installing uv..."
if [ "${USERNAME}" != "root" ] && [ "${USERNAME}" != "" ]; then
# Install uv for the specific user
sudo -u "${USERNAME}" bash -c 'curl -LsSf https://astral.sh/uv/install.sh | sh'
UV_PATH="/home/${USERNAME}/.local/bin/uv"
else
# Install uv for root
curl -LsSf https://astral.sh/uv/install.sh | sh
UV_PATH="$HOME/.local/bin/uv"
fi
# Make uv available system-wide
ln -sf "$UV_PATH" /usr/local/bin/uv
# Install specify-cli
echo "Installing Specify CLI..."
if [ "${USERNAME}" != "root" ] && [ "${USERNAME}" != "" ]; then
# Install for the specific user
sudo -u "${USERNAME}" bash -c "
export PATH=\"/home/${USERNAME}/.local/bin:\$PATH\"
if [ \"${VERSION}\" = \"latest\" ]; then
uv tool install specify-cli --from \"git+https://github.com/github/spec-kit.git\"
else
uv tool install specify-cli --from \"git+https://github.com/github/spec-kit.git@${VERSION}\"
fi
"
SPECIFY_PATH="/home/${USERNAME}/.local/bin"
else
# Install for root
if [ "${VERSION}" = "latest" ]; then
uv tool install specify-cli --from "git+https://github.com/github/spec-kit.git"
else
uv tool install specify-cli --from "git+https://github.com/github/spec-kit.git@${VERSION}"
fi
SPECIFY_PATH="$HOME/.local/bin"
fi
# Make specify available system-wide
ln -sf "${SPECIFY_PATH}/specify" /usr/local/bin/specify
### END install
# Clean up
rm -rf /var/lib/apt/lists/*
echo "Specify CLI installation completed!"
echo "You can now use 'specify' command to create spec-driven development projects."