From ba6df196f7082993de7491889aff64f3bf9bcbea Mon Sep 17 00:00:00 2001 From: DavidHoffer Date: Fri, 11 Jun 2021 13:24:09 -0600 Subject: [PATCH 1/2] Updated to resolve new findings. --- hardening_manifest.yaml | 6 +++--- pom.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 6651dd1..37b64f2 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -8,7 +8,7 @@ name: "bluestaq/bluestaq-accmgmt-front/bluestaq-accmgmt-front" # The most specific version should be the first tag and will be shown # on ironbank.dsop.io tags: -- "1.0.17.1-IB" +- "1.0.20-IB" - "latest" # Build args passed to Dockerfile ARGs @@ -27,7 +27,7 @@ labels: org.opencontainers.image.url: "https://www.bluestaq.com/" ## Name of the distributing entity, organization or individual org.opencontainers.image.vendor: "Bluestaq LLC" - org.opencontainers.image.version: "1.0.17.1-IB" + org.opencontainers.image.version: "1.0.20-IB" ## Keywords to help with search (ex. "cicd,gitops,golang") # mil.dso.ironbank.image.keywords: "FIXME" ## This value can be "opensource" or "commercial" @@ -44,7 +44,7 @@ resources: url: s3://bluestaq-ironbank-shared-files/accountmgt-quarkus-dockerimage.zip validation: type: sha256 - value: f69dce3050b663a8c553d989a3071a9e0e3c9ca43c38bc76b0e6977356a791c7 + value: 2cb03bfa5baaf13728d68f554a332c1deb3f373a8b2894c651ad2b26e5630cd1 # List of project maintainers maintainers: diff --git a/pom.xml b/pom.xml index b0e65c5..2c4fd81 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.bluestaq.accmgmt bluestaq-accmgmt-front - 1.0.17.1-IB + 1.0.20-IB pom @@ -18,7 +18,7 @@ com.bluestaq.accountmgt accountmgt-quarkus - 1.0.17.1 + 1.0.20 dockerimage zip provided -- GitLab From 2a039093e8af12d1bccd63671d097a11f91a14af Mon Sep 17 00:00:00 2001 From: DavidHoffer Date: Mon, 14 Jun 2021 09:40:05 -0600 Subject: [PATCH 2/2] Updated to resolve new findings II. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 340c961..a0ed59f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ ARG BASE_IMAGE=redhat/openjdk/openjdk11 FROM ${BASE_REGISTRY}/${BASE_IMAGE}:${BASE_TAG} +HEALTHCHECK NONE + EXPOSE 8092 5007 COPY accountmgt-quarkus-dockerimage.zip /opt/acctmgmt-front/ -- GitLab