From 7edfb6c98bbb856f6e86e323c7398c037783a85b Mon Sep 17 00:00:00 2001 From: James Jones Date: Sun, 23 Apr 2023 17:53:45 -0400 Subject: [PATCH 1/2] Adding on kube deps --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 4036f66..49ba905 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ FROM ${ARTIFACTORY}/podman/stable:latest RUN dnf install -y podman-docker buildah skopeo docker-compose \ util-linux ansible-core openssh-clients krb5-devel krb5-libs krb5-workstation git jq wget curl unzip coreutils \ helm doctl kubernetes-client gnupg2 pinentry expect gh awscli \ + python3-jsonpatch python3-requests-oauthlib python3-kubernetes \ && rpm --import https://packages.microsoft.com/keys/microsoft.asc \ && dnf install -y https://packages.microsoft.com/config/rhel/9.0/packages-microsoft-prod.rpm \ && dnf install -y azure-cli \ From d4c5fbe351ff8d231bc95f602a43597c0eb70f7b Mon Sep 17 00:00:00 2001 From: James Jones Date: Sun, 23 Apr 2023 18:26:29 -0400 Subject: [PATCH 2/2] Adding on kube deps --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 49ba905..4c81531 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ ARG ARTIFACTORY FROM ${ARTIFACTORY}/podman/stable:latest # Adding on the docker alias, docker-compose and other useful stuff including the Azure CLI and RPM build tools along with FPM -RUN dnf install -y podman-docker buildah skopeo docker-compose \ +# docker-compose - broken dependencies in F38 so removing +RUN dnf install -y podman-docker buildah skopeo \ util-linux ansible-core openssh-clients krb5-devel krb5-libs krb5-workstation git jq wget curl unzip coreutils \ helm doctl kubernetes-client gnupg2 pinentry expect gh awscli \ python3-jsonpatch python3-requests-oauthlib python3-kubernetes \