From c10b8cd977bb6f6c701cfbf5a79169e35fb56f04 Mon Sep 17 00:00:00 2001 From: Samuel Suter Date: Wed, 12 Apr 2023 00:29:51 -0600 Subject: [PATCH] updating base image and python deps Signed-off-by: Samuel Suter --- Dockerfile | 10 +++++----- requirements.txt | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index ba9093a..82a8592 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG BASE_REGISTRY=registry.access.redhat.com ARG BASE_IMAGE=ubi8/ubi -ARG BASE_TAG=8.5 +ARG BASE_TAG=8.7-1112 #### Start first stage #### Anchore wheels, binary dependencies, etc. are staged to /build_output for second stage @@ -26,8 +26,8 @@ RUN set -ex && \ yum install -y \ gcc \ make \ - python38 \ - python38-wheel && \ + python39 \ + python39-wheel && \ pip3 install pip=="${PIP_VERSION}" # stage anchore wheels and default configs into /build_output @@ -77,8 +77,8 @@ COPY --from=anchore-cli-builder /build_output /build_output # install OS dependencies RUN yum update -y && \ yum install -y \ - python38 \ - python38-wheel && \ + python39 \ + python39-wheel && \ yum clean all && \ pip3 install --upgrade --no-index --find-links=/build_output/wheels/ pip diff --git a/requirements.txt b/requirements.txt index 5ae93cb..f510568 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -Click==8.0.1 -prettytable==2.2.0 +Click==8.1.3 +prettytable==3.7.0 python-dateutil==2.8.2 -PyYAML==5.4.1 -requests==2.26.0 +PyYAML==6.0 +requests==2.28.2 six==1.16.0 -urllib3==1.26.6 +urllib3==1.26.15