From 62ffe72477870f660f1ea94e83109e37a8a92b02 Mon Sep 17 00:00:00 2001 From: Darien Weems Date: Tue, 26 Aug 2025 15:40:50 -0400 Subject: [PATCH] add yq to dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d54942..cc25dc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,8 @@ RUN echo "**** install Python 3.12 ****" && \ apt-get install -y \ python3.12 \ python3.12-dev \ - python3.12-venv && \ + python3.12-venv \ + yq && \ update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1 && \ update-alternatives --install /usr/bin/python python /usr/bin/python3.12 1 && \ curl -sS https://bootstrap.pypa.io/get-pip.py | python3.12 && \