Skip to content

Commit 5bb784d

Browse files
committed
Add debhelper to base images
1 parent e834dd5 commit 5bb784d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docker/debian/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ pkgs+=(ca-certificates) # Enable TLS verification for HTTPS connections by provi
4040
pkgs+=(cmake) # Required build tool.
4141
pkgs+=(curl) # Dependency for tools requiring downloading data.
4242
pkgs+=(dpkg-dev) # Required packaging tool.
43+
pkgs+=(debhelper) # Required packaging tool.
4344
pkgs+=(file) # Required packaging tool.
4445
pkgs+=(git) # Required build tool.
4546
pkgs+=(gpg) # Dependency for tools requiring signing or encrypting/decrypting.

docker/ubuntu/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ pkgs+=(ca-certificates) # Enable TLS verification for HTTPS connections by provi
2929
pkgs+=(cmake) # Required build tool.
3030
pkgs+=(curl) # Dependency for tools requiring downloading data.
3131
pkgs+=(dpkg-dev) # Required packaging tool.
32+
pkgs+=(debhelper) # Required packaging tool.
3233
pkgs+=(file) # Required packaging tool.
3334
pkgs+=(git) # Required build tool.
3435
pkgs+=(gpg) # Dependency for tools requiring signing or encrypting/decrypting.
@@ -73,7 +74,6 @@ update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-${GCC_VERSION} 999
7374
update-alternatives \
7475
--install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_VERSION} ${GCC_VERSION} \
7576
--slave /usr/bin/g++ g++ /usr/bin/g++-${GCC_VERSION} \
76-
--slave /usr/bin/cpp cpp /usr/bin/cpp-${GCC_VERSION} \
7777
--slave /usr/bin/gcov gcov /usr/bin/gcov-${GCC_VERSION} \
7878
--slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-${GCC_VERSION} \
7979
--slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-${GCC_VERSION}

0 commit comments

Comments
 (0)