add yq to dockerfile

This commit is contained in:
Darien Weems 2025-08-26 15:40:50 -04:00
parent 92a464988d
commit 62ffe72477

View File

@ -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 && \