[docker-database]: Install sonic-dash-api CLI in database container (#17479)

Add sonic-dash-api CLI in database container for decoding the dash objects from protobuf to readable json.

Signed-off-by: Ze Gan <ganze718@gmail.com>
This commit is contained in:
Ze Gan
2024-02-02 03:13:51 +08:00
committed by GitHub
parent 4af43dc63b
commit 1c901b8f12
3 changed files with 7 additions and 2 deletions

View File

@@ -12,6 +12,9 @@ RUN apt-get update
# Install redis-server
RUN apt-get install -y redis-tools redis-server
# Install click for CLI
RUN pip3 install click
{% if docker_database_debs.strip() -%}
# Copy locally-built Debian package dependencies
{{ copy_files("debs/", docker_database_debs.split(' '), "/debs/") }}