diff options
| author | crupest <crupest@outlook.com> | 2024-08-14 00:28:12 +0800 | 
|---|---|---|
| committer | crupest <crupest@outlook.com> | 2024-08-14 00:52:49 +0800 | 
| commit | 18e9bb5c63702be90076b6225eb4a9781f4fb088 (patch) | |
| tree | 94ab8a576099a7b2d7ca16af96bf745cc696ed4c | |
| parent | 411cb6caa2fe875d1000ea3c126b15d91b142e8f (diff) | |
| download | crupest-18e9bb5c63702be90076b6225eb4a9781f4fb088.tar.gz crupest-18e9bb5c63702be90076b6225eb4a9781f4fb088.tar.bz2 crupest-18e9bb5c63702be90076b6225eb4a9781f4fb088.zip | |
fix(docker/debian-dev): python and setup-code-server.
| -rwxr-xr-x | docker/crupest-debian-dev/bootstrap/setup-base.bash | 2 | ||||
| -rwxr-xr-x | docker/crupest-debian-dev/bootstrap/setup-dev.bash | 2 | ||||
| -rwxr-xr-x | docker/crupest-debian-dev/bootstrap/setup.bash | 2 | 
3 files changed, 4 insertions, 2 deletions
| diff --git a/docker/crupest-debian-dev/bootstrap/setup-base.bash b/docker/crupest-debian-dev/bootstrap/setup-base.bash index 68ebb55..060daeb 100755 --- a/docker/crupest-debian-dev/bootstrap/setup-base.bash +++ b/docker/crupest-debian-dev/bootstrap/setup-base.bash @@ -4,7 +4,7 @@ set -e  . /bootstrap/func.bash -apt-get install -y locales vim less man bash-completion rsync curl wget +apt-get install -y locales procps vim less man bash-completion rsync curl wget  localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 diff --git a/docker/crupest-debian-dev/bootstrap/setup-dev.bash b/docker/crupest-debian-dev/bootstrap/setup-dev.bash index a2f2f52..8d26328 100755 --- a/docker/crupest-debian-dev/bootstrap/setup-dev.bash +++ b/docker/crupest-debian-dev/bootstrap/setup-dev.bash @@ -5,7 +5,7 @@ set -e  . /bootstrap/func.bash  apt-get install -y build-essential git devscripts debhelper quilt \ -    cpio kmod bc python bison flex libelf-dev libssl-dev libncurses-dev dwarves +    cpio kmod bc python3 bison flex libelf-dev libssl-dev libncurses-dev dwarves  append-bash-profile dquilt.bash  copy-home-dot-file devscripts diff --git a/docker/crupest-debian-dev/bootstrap/setup.bash b/docker/crupest-debian-dev/bootstrap/setup.bash index f00c60b..1aaff50 100755 --- a/docker/crupest-debian-dev/bootstrap/setup.bash +++ b/docker/crupest-debian-dev/bootstrap/setup.bash @@ -4,6 +4,8 @@ set -e  export DEBIAN_FRONTEND=noninteractive +. /bootstrap/func.bash +  /bootstrap/apt-source/setup.bash  apt-get update | 
