From f83290177cc98930e4efa62e45654663600530a2 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 20 Sep 2023 17:14:46 +0200 Subject: [PATCH] fix: add missing dependencies --- Dockerfile | 4 ++-- overlay/root/requirements.txt | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index dc469d8..302285a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,10 +34,10 @@ RUN apk add --update --no-cache --virtual .build-deps build-base libffi-dev musl MOLECULE_MAJOR="${MOLECULE_VERSION%%.*}" && \ if [ -z "${MOLECULE_MAJOR//[0-9]}" ] && [ -n "$MOLECULE_MAJOR" ]; then \ echo "Installing molecule version '$MOLECULE_VERSION' ..." && \ - pip install -qq --no-cache-dir molecule[docker,test]=="$MOLECULE_VERSION"; \ + pip install -qq --no-cache-dir molecule=="$MOLECULE_VERSION" molecule-plugins[docker]; \ else \ echo "Installing latest molecule ..." && \ - pip install -qq --no-cache-dir molecule[docker,test]; \ + pip install -qq --no-cache-dir molecule molecule-plugins[docker]; \ fi && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \ diff --git a/overlay/root/requirements.txt b/overlay/root/requirements.txt index a296e87..031d25b 100644 --- a/overlay/root/requirements.txt +++ b/overlay/root/requirements.txt @@ -9,3 +9,5 @@ hcloud pycrypto flaky passlib +pytest +pytest-testinfra