Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gpg fixes #5165

Merged
merged 1 commit into from
Dec 12, 2018
Merged

gpg fixes #5165

merged 1 commit into from
Dec 12, 2018

Conversation

keeganwitt
Copy link
Contributor

No description provided.

@tianon
Copy link
Member

tianon commented Dec 11, 2018

Diff:
diff --git a/groovy_3.0-alpine/Dockerfile b/groovy_3.0-alpine/Dockerfile
index f9c6a0c..c2c2fd7 100644
--- a/groovy_3.0-alpine/Dockerfile
+++ b/groovy_3.0-alpine/Dockerfile
@@ -28,19 +28,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget -qO groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm -rf "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_3.0-jdk-alpine/Dockerfile b/groovy_3.0-jdk-alpine/Dockerfile
index 840fcdf..1318ba1 100644
--- a/groovy_3.0-jdk-alpine/Dockerfile
+++ b/groovy_3.0-jdk-alpine/Dockerfile
@@ -28,19 +28,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget -qO groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm -rf "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_3.0-jdk/Dockerfile b/groovy_3.0-jdk/Dockerfile
index ad11404..4df9433 100644
--- a/groovy_3.0-jdk/Dockerfile
+++ b/groovy_3.0-jdk/Dockerfile
@@ -24,19 +24,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_3.0/Dockerfile b/groovy_3.0/Dockerfile
index 6d794eb..93f4063 100644
--- a/groovy_3.0/Dockerfile
+++ b/groovy_3.0/Dockerfile
@@ -24,19 +24,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_alpine/Dockerfile b/groovy_alpine/Dockerfile
index 7f89a86..01bbb3c 100644
--- a/groovy_alpine/Dockerfile
+++ b/groovy_alpine/Dockerfile
@@ -28,19 +28,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget -qO groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm -rf "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jdk-alpine/Dockerfile b/groovy_jdk-alpine/Dockerfile
index c4e8fec..383c76e 100644
--- a/groovy_jdk-alpine/Dockerfile
+++ b/groovy_jdk-alpine/Dockerfile
@@ -28,19 +28,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget -qO groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm -rf "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jdk/Dockerfile b/groovy_jdk/Dockerfile
index 08ee88d..178d46c 100644
--- a/groovy_jdk/Dockerfile
+++ b/groovy_jdk/Dockerfile
@@ -24,19 +24,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jdk11/Dockerfile b/groovy_jdk11/Dockerfile
index dea1f70..16bc79e 100644
--- a/groovy_jdk11/Dockerfile
+++ b/groovy_jdk11/Dockerfile
@@ -31,19 +31,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jdk7-alpine/Dockerfile b/groovy_jdk7-alpine/Dockerfile
index 2f6a49f..b2b3a8f 100644
--- a/groovy_jdk7-alpine/Dockerfile
+++ b/groovy_jdk7-alpine/Dockerfile
@@ -28,19 +28,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget -qO groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm -rf "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jdk7/Dockerfile b/groovy_jdk7/Dockerfile
index f29ee0e..ce42702 100644
--- a/groovy_jdk7/Dockerfile
+++ b/groovy_jdk7/Dockerfile
@@ -24,19 +24,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jre11/Dockerfile b/groovy_jre11/Dockerfile
index 48d143c..a7f650e 100644
--- a/groovy_jre11/Dockerfile
+++ b/groovy_jre11/Dockerfile
@@ -31,19 +31,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jre7-alpine/Dockerfile b/groovy_jre7-alpine/Dockerfile
index 366b9b3..623679c 100644
--- a/groovy_jre7-alpine/Dockerfile
+++ b/groovy_jre7-alpine/Dockerfile
@@ -28,19 +28,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget -qO groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm -rf "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_jre7/Dockerfile b/groovy_jre7/Dockerfile
index c7e3c06..1b7e62e 100644
--- a/groovy_jre7/Dockerfile
+++ b/groovy_jre7/Dockerfile
@@ -24,19 +24,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \
diff --git a/groovy_latest/Dockerfile b/groovy_latest/Dockerfile
index 3b9a31c..234e948 100644
--- a/groovy_latest/Dockerfile
+++ b/groovy_latest/Dockerfile
@@ -24,19 +24,19 @@ RUN set -o errexit -o nounset \
             "pgp.mit.edu" \
         ; do \
             echo "  Trying ${server}"; \
-            if gpg --keyserver "${server}" --recv-keys "${key}"; then \
+            if gpg --batch --no-tty --keyserver "${server}" --recv-keys "${key}"; then \
                 break; \
             fi; \
         done; \
     done; \
-    if [ $(gpg --list-keys | grep -c "pub ") -ne 5 ]; then \
+    if [ $(gpg --batch --no-tty --list-keys | grep -c "pub ") -ne 5 ]; then \
         echo "ERROR: Failed to fetch GPG keys" >&2; \
         exit 1; \
     fi \
     \
     && echo "Checking download signature" \
     && wget --no-verbose --output-document=groovy.zip.asc "https://dist.apache.org/repos/dist/release/groovy/${GROOVY_VERSION}/distribution/apache-groovy-binary-${GROOVY_VERSION}.zip.asc" \
-    && gpg --batch --verify groovy.zip.asc groovy.zip \
+    && gpg --batch --no-tty --verify groovy.zip.asc groovy.zip \
     && rm --recursive --force "${GNUPGHOME}" \
     && rm groovy.zip.asc \
     \

@tianon
Copy link
Member

tianon commented Dec 12, 2018

LGTM

Build test of #5165; 2b589df; amd64 (groovy):

$ bashbrew build groovy:2.5.4-jdk7
Building bashbrew/cache:f786c6afb7600663f986635e54acc7e033e030958377c04c8ba5a20c8525441e (groovy:2.5.4-jdk7)
Tagging groovy:2.5.4-jdk7
Tagging groovy:2.5-jdk7
Tagging groovy:jdk7

$ test/run.sh groovy:2.5.4-jdk7
testing groovy:2.5.4-jdk7
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jre7
Building bashbrew/cache:494ac4320b0b3dd2089b1b64dba767c962bd2587508fc3f3959fbadb201df7fe (groovy:2.5.4-jre7)
Tagging groovy:2.5.4-jre7
Tagging groovy:2.5-jre7
Tagging groovy:jre7

$ test/run.sh groovy:2.5.4-jre7
testing groovy:2.5.4-jre7
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jdk7-alpine
Building bashbrew/cache:4b506998c354043c29cf3e02829a2376cb1b6cf37aea0c4081eea93d24ce5931 (groovy:2.5.4-jdk7-alpine)
Tagging groovy:2.5.4-jdk7-alpine
Tagging groovy:2.5-jdk7-alpine
Tagging groovy:jdk7-alpine

$ test/run.sh groovy:2.5.4-jdk7-alpine
testing groovy:2.5.4-jdk7-alpine
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jre7-alpine
Building bashbrew/cache:9b8a89ef9af0ad6ba55141dc26700120ec739a723858e89c4e0e073d2d6bb6a9 (groovy:2.5.4-jre7-alpine)
Tagging groovy:2.5.4-jre7-alpine
Tagging groovy:2.5-jre7-alpine
Tagging groovy:jre7-alpine

$ test/run.sh groovy:2.5.4-jre7-alpine
testing groovy:2.5.4-jre7-alpine
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jdk8
Building bashbrew/cache:1fe3ff801e2d78f3947e65d265661349e5d741f1b69abf6e7e784e5c1ec425c0 (groovy:2.5.4-jdk8)
Tagging groovy:2.5.4-jdk8
Tagging groovy:2.5-jdk8
Tagging groovy:2.5.4-jdk
Tagging groovy:2.5-jdk
Tagging groovy:jdk8
Tagging groovy:jdk

$ test/run.sh groovy:2.5.4-jdk8
testing groovy:2.5.4-jdk8
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jre8
Building bashbrew/cache:f717b38edcc83d9c1e35f7ca5e1ccdfc6863cd2e13b02c0234d77a497352fc01 (groovy:2.5.4-jre8)
Tagging groovy:2.5.4-jre8
Tagging groovy:2.5-jre8
Tagging groovy:2.5.4-jre
Tagging groovy:2.5-jre
Tagging groovy:2.5.4
Tagging groovy:2.5
Tagging groovy:jre8
Tagging groovy:jre
Tagging groovy:latest

$ test/run.sh groovy:2.5.4-jre8
testing groovy:2.5.4-jre8
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jdk8-alpine
Building bashbrew/cache:6ecd234caf21c1840370f90a8688d0378fdcc2b4cb6a4fe54fbd5c08942aef1b (groovy:2.5.4-jdk8-alpine)
Tagging groovy:2.5.4-jdk8-alpine
Tagging groovy:2.5-jdk8-alpine
Tagging groovy:2.5.4-jdk-alpine
Tagging groovy:2.5-jdk-alpine
Tagging groovy:jdk8-alpine
Tagging groovy:jdk-alpine

$ test/run.sh groovy:2.5.4-jdk8-alpine
testing groovy:2.5.4-jdk8-alpine
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jre8-alpine
Building bashbrew/cache:c3c1df4eed235d7dc957e5d37874e410694f4937f63ebe13dc2e14a076aa4f1a (groovy:2.5.4-jre8-alpine)
Tagging groovy:2.5.4-jre8-alpine
Tagging groovy:2.5-jre8-alpine
Tagging groovy:2.5.4-jre-alpine
Tagging groovy:2.5-jre-alpine
Tagging groovy:2.5.4-alpine
Tagging groovy:2.5-alpine
Tagging groovy:jre8-alpine
Tagging groovy:jre-alpine
Tagging groovy:alpine

$ test/run.sh groovy:2.5.4-jre8-alpine
testing groovy:2.5.4-jre8-alpine
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jdk11
Building bashbrew/cache:13388548500c8a3339b8daf6f8a4b8cb9a911811afaf60ef7955b50ff002f886 (groovy:2.5.4-jdk11)
Tagging groovy:2.5.4-jdk11
Tagging groovy:2.5-jdk11
Tagging groovy:jdk11

$ test/run.sh groovy:2.5.4-jdk11
testing groovy:2.5.4-jdk11
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:2.5.4-jre11
Building bashbrew/cache:e2d77d1da21365c1eac542cae34a4265d0b6cb965dd749604f987e524452d582 (groovy:2.5.4-jre11)
Tagging groovy:2.5.4-jre11
Tagging groovy:2.5-jre11
Tagging groovy:jre11

$ test/run.sh groovy:2.5.4-jre11
testing groovy:2.5.4-jre11
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:3.0.0-alpha-3-jdk8
Building bashbrew/cache:2dbc24b83ca2201a5fe9bd327baf1e86979a92b9966d254d51f2309dd9fc9fdc (groovy:3.0.0-alpha-3-jdk8)
Tagging groovy:3.0.0-alpha-3-jdk8
Tagging groovy:3.0-jdk8
Tagging groovy:3.0.0-alpha-3-jdk
Tagging groovy:3.0-jdk

$ test/run.sh groovy:3.0.0-alpha-3-jdk8
testing groovy:3.0.0-alpha-3-jdk8
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:3.0.0-alpha-3-jre8
Building bashbrew/cache:8c0210d39ed40a9895aac4a0b156a3d326c84c8e1ecb9a937b13334c16eb5f7b (groovy:3.0.0-alpha-3-jre8)
Tagging groovy:3.0.0-alpha-3-jre8
Tagging groovy:3.0-jre8
Tagging groovy:3.0.0-alpha-3-jre
Tagging groovy:3.0-jre
Tagging groovy:3.0.0-alpha-3
Tagging groovy:3.0

$ test/run.sh groovy:3.0.0-alpha-3-jre8
testing groovy:3.0.0-alpha-3-jre8
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:3.0.0-alpha-3-jdk8-alpine
Building bashbrew/cache:2d82f8485bfe4d751228b76b899c694b498c6e1032854bd57d6dc63c52d1eb07 (groovy:3.0.0-alpha-3-jdk8-alpine)
Tagging groovy:3.0.0-alpha-3-jdk8-alpine
Tagging groovy:3.0-jdk8-alpine
Tagging groovy:3.0.0-alpha-3-jdk-alpine
Tagging groovy:3.0-jdk-alpine

$ test/run.sh groovy:3.0.0-alpha-3-jdk8-alpine
testing groovy:3.0.0-alpha-3-jdk8-alpine
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed


$ bashbrew build groovy:3.0.0-alpha-3-jre8-alpine
Building bashbrew/cache:c27f7d0d5841034b00f2af516c4ae1ca30ba8496f8f944fdcbb02208dd10f4a3 (groovy:3.0.0-alpha-3-jre8-alpine)
Tagging groovy:3.0.0-alpha-3-jre8-alpine
Tagging groovy:3.0-jre8-alpine
Tagging groovy:3.0.0-alpha-3-jre-alpine
Tagging groovy:3.0-jre-alpine
Tagging groovy:3.0.0-alpha-3-alpine
Tagging groovy:3.0-alpine

$ test/run.sh groovy:3.0.0-alpha-3-jre8-alpine
testing groovy:3.0.0-alpha-3-jre8-alpine
	'utc' [1/4]...passed
	'cve-2014--shellshock' [2/4]...passed
	'no-hard-coded-passwords' [3/4]...passed
	'override-cmd' [4/4]...passed

@tianon tianon merged commit a89c6d8 into docker-library:master Dec 12, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants