c0caf0c372
Signed-off-by: Stepan Blyschak <stepanb@mellanox.com>
19 lines
536 B
Makefile
19 lines
536 B
Makefile
# Docker base image (based on Debian Stretch)
|
|
|
|
DOCKER_BASE_STRETCH = docker-base-stretch.gz
|
|
$(DOCKER_BASE_STRETCH)_PATH = $(DOCKERS_PATH)/docker-base-stretch
|
|
$(DOCKER_BASE_STRETCH)_DEPENDS += $(SUPERVISOR)
|
|
$(DOCKER_BASE_STRETCH)_DEPENDS += $(SOCAT)
|
|
|
|
ifeq ($(INSTALL_DEBUG_TOOLS),y)
|
|
GDB = gdb
|
|
GDBSERVER = gdbserver
|
|
VIM = vim
|
|
OPENSSH = openssh-client
|
|
SSHPASS = sshpass
|
|
STRACE = strace
|
|
$(DOCKER_BASE_STRETCH)_DBG_PACKAGES += $(GDB) $(GDBSERVER) $(VIM) $(OPENSSH) $(SSHPASS) $(STRACE)
|
|
endif
|
|
|
|
SONIC_STRETCH_DOCKERS += $(DOCKER_BASE_STRETCH)
|