From 9b224865e9fbbc548ad1c57649a23a78131387cc Mon Sep 17 00:00:00 2001 From: Luke Stigdon <lstigdon@eitccorp.com> Date: Thu, 5 Aug 2021 10:37:57 -0400 Subject: [PATCH 1/2] update rda-converter to 0.4.1 --- hardening_manifest.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hardening_manifest.yaml b/hardening_manifest.yaml index 9941be9..ab6b866 100644 --- a/hardening_manifest.yaml +++ b/hardening_manifest.yaml @@ -8,7 +8,7 @@ name: "bdp/rda/converter" # The most specific version should be the first tag and will be shown # on ironbank.dsop.io tags: - - "0.4.0" + - "0.4.1" - "latest" # Build args passed to Dockerfile ARGs @@ -27,7 +27,7 @@ labels: org.opencontainers.image.url: "https://repo1.dso.mil/dsop/bdp/rda/converter" ## Name of the distributing entity, organization or individual org.opencontainers.image.vendor: "BDP" - org.opencontainers.image.version: "0.4.0" + org.opencontainers.image.version: "0.4.1" ## Keywords to help with search (ex. "cicd,gitops,golang") mil.dso.ironbank.image.keywords: "rda,bdp,updn,k8s,converter" ## This value can be "opensource" or "commercial" @@ -36,14 +36,14 @@ labels: mil.dso.ironbank.product.name: "BDP RDA" resources: - - url: "https://nexus.eitccorp.com/repository/releases/bdp/rda/rda-converter/0.4.0/rda-converter-0.4.0.zip" + - url: "https://nexus.eitccorp.com/repository/releases/bdp/rda/rda-converter/0.4.1/rda-converter-0.4.1.zip" filename: "rda-converter.zip" auth: type: "basic" id: "eitc" validation: type: "sha256" - value: "ac022dc107e1ebb2fe6fb3aa2a7646d16348c33ac90e812dd2f74c444057675b" + value: "c718ed458d828bf497371e0a604fb01cee5cad952e7977bd9b861bd00c8106a6" # List of project maintainers maintainers: -- GitLab From fe7c8fbd550afd87b14e9e068257422c9dbf6938 Mon Sep 17 00:00:00 2001 From: Luke Stigdon <lstigdon@eitccorp.com> Date: Thu, 5 Aug 2021 11:00:43 -0400 Subject: [PATCH 2/2] add HEALTHCHECK --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1ca616c..8f855b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,8 @@ RUN microdnf install -y unzip shadow-utils && \ microdnf clean all && \ rm -rf /var/cache/yum /var/tmp/* /tmp/* /var/tmp/.???* /tmp/.???* +HEALTHCHECK none + USER ${DEFAULTUID} ENTRYPOINT ["/usr/local/bin/rda-converter"] \ No newline at end of file -- GitLab