fee2441717
* [slave-bullseye]: Remove Python 2 It shouldn't be needed anymore. Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com> * [dockers]: Add docker-base-bullseye and docker-config-engine-bullseye Also upgrade socat from 1.7.3.1 to 1.7.4.1 Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
17 lines
463 B
Makefile
17 lines
463 B
Makefile
# Docker base image (based on Debian Bullseye)
|
|
|
|
DOCKER_BASE_BULLSEYE = docker-base-bullseye.gz
|
|
$(DOCKER_BASE_BULLSEYE)_PATH = $(DOCKERS_PATH)/docker-base-bullseye
|
|
|
|
$(DOCKER_BASE_BULLSEYE)_DEPENDS += $(SOCAT)
|
|
|
|
GDB = gdb
|
|
GDBSERVER = gdbserver
|
|
VIM = vim
|
|
OPENSSH = openssh-client
|
|
SSHPASS = sshpass
|
|
STRACE = strace
|
|
$(DOCKER_BASE_BULLSEYE)_DBG_IMAGE_PACKAGES += $(GDB) $(GDBSERVER) $(VIM) $(OPENSSH) $(SSHPASS) $(STRACE)
|
|
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_BASE_BULLSEYE)
|