diff options
author | crupest <crupest@outlook.com> | 2023-11-13 13:46:28 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-11-13 13:47:29 +0800 |
commit | affd45aa1fbb87c47d51483c24d4f2cb56b3ee7e (patch) | |
tree | 0e1ec1f034c790c6247e03112d0291feac8c41ec /docker/debian-dev | |
parent | 762d71e54436feb7e9ec766d422316d5c1882e7c (diff) | |
download | crupest-affd45aa1fbb87c47d51483c24d4f2cb56b3ee7e.tar.gz crupest-affd45aa1fbb87c47d51483c24d4f2cb56b3ee7e.tar.bz2 crupest-affd45aa1fbb87c47d51483c24d4f2cb56b3ee7e.zip |
(docker:debian-dev) add devscripts. disable sbuild.
Diffstat (limited to 'docker/debian-dev')
-rw-r--r-- | docker/debian-dev/Dockerfile | 4 | ||||
-rwxr-xr-x | docker/debian-dev/bootstrap/setup-dev-tools.bash | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docker/debian-dev/Dockerfile b/docker/debian-dev/Dockerfile index e17087f..bad9ca2 100644 --- a/docker/debian-dev/Dockerfile +++ b/docker/debian-dev/Dockerfile @@ -6,8 +6,8 @@ RUN /bootstrap/replace-mirrors.bash RUN /bootstrap/setup-base.bash RUN /bootstrap/setup-dev-tools.bash RUN /bootstrap/setup-dev-tools-arm64.bash -RUN /bootstrap/setup-sbuild.bash -RUN /bootstrap/setup-sbuild-arm64.bash +# RUN /bootstrap/setup-sbuild.bash +# RUN /bootstrap/setup-sbuild-arm64.bash VOLUME [ "/data" ] CMD [ "bash", "-l" ] diff --git a/docker/debian-dev/bootstrap/setup-dev-tools.bash b/docker/debian-dev/bootstrap/setup-dev-tools.bash index a8fa9d1..f30deca 100755 --- a/docker/debian-dev/bootstrap/setup-dev-tools.bash +++ b/docker/debian-dev/bootstrap/setup-dev-tools.bash @@ -2,7 +2,7 @@ set -e -apt-get install -y build-essential debhelper quilt cpio kmod git bc python bison flex rsync libelf-dev libssl-dev libncurses-dev dwarves +apt-get install -y build-essential devscripts debhelper quilt cpio kmod git bc python bison flex rsync libelf-dev libssl-dev libncurses-dev dwarves cp /bootstrap/quiltrc-dpkg /root/.quiltrc-dpkg cat /bootstrap/bash-profile/dquilt.bash >> /root/.bash_profile |