From 5c9cb2ae5ce0c5e303d9cd6bb328930990ad07be Mon Sep 17 00:00:00 2001 From: Abhinav Parihar Date: Tue, 23 Dec 2025 14:08:51 +0530 Subject: [PATCH] Add libyaml-dev package installation Install libyaml-dev for newly added yaml depedency in fastrpc project Signed-off-by: Abhinav Parihar --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ba91970..85f6296 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,8 @@ RUN apt-get update && \ apt-transport-https apt-utils fuseext2 \ chrpath cpio debianutils diffstat file gawk gpg-agent iputils-ping locales liblz4-tool libsdl1.2-dev \ openssh-client python3-git python3-pexpect python3-software-properties socat software-properties-common texinfo \ - tmux unzip vim xterm zstd && \ + tmux unzip vim xterm zstd \ + libyaml-dev && \ # Using --break-system-packages for pip is fine for Dockerfiles if intended. python3 -m pip install --break-system-packages dtschema==2024.11 jinja2 ply GitPython requests kas==4.7 && \ update-alternatives --install /usr/bin/python python /usr/bin/python3 1 && \