From 2e23b142c0493ee103d79718c73626b1c72c58e4 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 26 Mar 2024 10:12:35 +0100 Subject: [PATCH] fix: add py3-yaml as requirement for openapi2jsonschema --- Containerfile.multiarch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile.multiarch b/Containerfile.multiarch index 7592eb1..d973e54 100644 --- a/Containerfile.multiarch +++ b/Containerfile.multiarch @@ -40,7 +40,7 @@ ENV FLUX_VERSION="${FLUX_VERSION:-v2.2.3}" ENV PIPX_HOME=/opt/pipx ENV PIPX_BIN_DIR=/usr/local/bin -RUN apk --update add curl tar make bash python3 pipx findutils git && \ +RUN apk --update add curl tar make bash python3 py3-yaml pipx findutils git && \ apk --no-cache upgrade libcrypto3 libssl3 && \ pipx install --include-deps flux-local=="$FLUX_LOCAL_VERSION" && \ pipx inject flux-local PyYAML && \