diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 696a7c9..c773060 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -32,4 +32,5 @@ jobs: uses: super-linter/super-linter/slim@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + VALIDATE_CHECKOV: false # Disabling while in discovery VALIDATE_KUBERNETES_KUBECONFORM: false # Super-Linter doesn't support https://github.com/jtyr/kubeconform-helm diff --git a/Dockerfile b/Dockerfile index bef572d..f12adbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM public.ecr.aws/ubuntu/ubuntu@sha256:288b44a1b2dfe3788255c3abd41e346bece153b9e066325f461f605425afaf82 +FROM public.ecr.aws/ubuntu/ubuntu@sha256:5b2fc4131b3c134a019c3ea815811de70e6ad9ee1626f59bf302558a95b436e5 LABEL org.opencontainers.image.vendor="Ministry of Justice" \ org.opencontainers.image.authors="Analytical Platform (analytical-platform@digital.justice.gov.uk)" \ @@ -7,19 +7,20 @@ LABEL org.opencontainers.image.vendor="Ministry of Justice" \ org.opencontainers.image.url="https://github.com/ministryofjustice/analytical-platform-mlflow" ENV CONTAINER_USER="analyticalplatform" \ - CONTAINER_UID="1001" \ + CONTAINER_UID="1000" \ CONTAINER_GROUP="analyticalplatform" \ - CONTAINER_GID="1001" \ + CONTAINER_GID="1000" \ DEBIAN_FRONTEND="noninteractive" \ MLFLOW_ROOT="/mlflow" \ - MLFLOW_VERSION="2.15.1" \ - BOTO3_VERSION="1.35.0" \ - PROMETHEUS_FLASK_EXPORTER_VERSION="0.23.1" \ + MLFLOW_VERSION="2.16.2" \ + BOTO3_VERSION="1.35.25" \ PSYCOPG2_BINARY_VERSION="2.9.9" SHELL ["/bin/bash", "-e", "-u", "-o", "pipefail", "-c"] RUN <