diff --git a/.infrastructure/arm.Dockerfile b/.infrastructure/arm.Dockerfile index 179a552..2540c6c 100644 --- a/.infrastructure/arm.Dockerfile +++ b/.infrastructure/arm.Dockerfile @@ -18,7 +18,8 @@ RUN cd /infracheck \ && git remote remove origin || true \ && git remote add origin https://github.com/riotkit-org/infracheck.git \ \ - && apk add --no-cache --update --virtual BUILD_DEPS py3-pip gcc python3-dev musl-dev linux-headers postgresql-dev libffi-dev \ + && apk add --no-cache --update py3-pip \ + && apk add --no-cache --update --virtual BUILD_DEPS gcc python3-dev musl-dev linux-headers postgresql-dev libffi-dev \ && pip3 install pbr==5.4.5 \ && pip3 install -r /infracheck/requirements.txt \ && rkd :install \ diff --git a/.infrastructure/x86_64.Dockerfile b/.infrastructure/x86_64.Dockerfile index 18777a2..2d03351 100644 --- a/.infrastructure/x86_64.Dockerfile +++ b/.infrastructure/x86_64.Dockerfile @@ -15,7 +15,8 @@ RUN cd /infracheck \ && git remote remove origin || true \ && git remote add origin https://github.com/riotkit-org/infracheck.git \ \ - && apk add --no-cache --update --virtual BUILD_DEPS py3-pip gcc python3-dev musl-dev linux-headers postgresql-dev libffi-dev \ + && apk add --no-cache --update py3-pip \ + && apk add --no-cache --update --virtual BUILD_DEPS gcc python3-dev musl-dev linux-headers postgresql-dev libffi-dev \ && pip3 install pbr==5.4.5 \ && pip3 install -r /infracheck/requirements.txt \ && rkd :install \