From bb68d1b08c53bd08c35f32d2f02ca7cf31b39ce5 Mon Sep 17 00:00:00 2001 From: thespad Date: Tue, 3 Dec 2024 16:54:47 +0000 Subject: [PATCH] Use yq-go package explicitly rather than yq alias --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ac9d7bb..f0391f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN \ openssh-sftp-server \ xfsprogs \ xz \ - yq && \ + yq-go && \ echo "**** setup openssh environment ****" && \ sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config && \ usermod --shell /bin/bash abc && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 505b553..8a83e68 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -27,7 +27,7 @@ RUN \ openssh-sftp-server \ xfsprogs \ xz \ - yq && \ + yq-go && \ echo "**** setup openssh environment ****" && \ sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config && \ usermod --shell /bin/bash abc && \