-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Update docker-library images #2270
Merged
yosifkit
merged 1 commit into
docker-library:master
from
infosiftr:update-docker-library
Oct 19, 2016
Merged
Update docker-library images #2270
yosifkit
merged 1 commit into
docker-library:master
from
infosiftr:update-docker-library
Oct 19, 2016
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- `golang`: 1.7.3 - `java`: alpine 7.111.2.6.7-r2 - `openjdk`: alpine 7.111.2.6.7-r2 - `php`: 7.1.0RC4
diff --git a/golang_alpine/Dockerfile b/golang_alpine/Dockerfile
index 217c925..279b7c6 100644
--- a/golang_alpine/Dockerfile
+++ b/golang_alpine/Dockerfile
@@ -2,9 +2,9 @@ FROM alpine:3.4
RUN apk add --no-cache ca-certificates
-ENV GOLANG_VERSION 1.7.1
+ENV GOLANG_VERSION 1.7.3
ENV GOLANG_SRC_URL https://golang.org/dl/go$GOLANG_VERSION.src.tar.gz
-ENV GOLANG_SRC_SHA256 2b843f133b81b7995f26d0cb64bbdbb9d0704b90c44df45f844d28881ad442d3
+ENV GOLANG_SRC_SHA256 79430a0027a09b0b3ad57e214c4c1acfdd7af290961dd08d322818895af1ef44
# https://golang.org/issue/14851
COPY no-pic.patch /
diff --git a/golang_latest/Dockerfile b/golang_latest/Dockerfile
index a67616c..a69aadb 100644
--- a/golang_latest/Dockerfile
+++ b/golang_latest/Dockerfile
@@ -9,9 +9,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
pkg-config \
&& rm -rf /var/lib/apt/lists/*
-ENV GOLANG_VERSION 1.7.1
+ENV GOLANG_VERSION 1.7.3
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
-ENV GOLANG_DOWNLOAD_SHA256 43ad621c9b014cde8db17393dc108378d37bc853aa351a6c74bf6432c1bbd182
+ENV GOLANG_DOWNLOAD_SHA256 508028aac0654e993564b6e2014bf2d4a9751e3b286661b0b0040046cf18028e
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \
diff --git a/golang_nanoserver/Dockerfile b/golang_nanoserver/Dockerfile
index 6d6a4c8..dc507cf 100644
--- a/golang_nanoserver/Dockerfile
+++ b/golang_nanoserver/Dockerfile
@@ -15,9 +15,9 @@ RUN $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); \
setx /M PATH $newPath;
# doing this first to share cache across versions more aggressively
-ENV GOLANG_VERSION 1.7.1
+ENV GOLANG_VERSION 1.7.3
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.windows-amd64.zip
-ENV GOLANG_DOWNLOAD_SHA256 af2b836bb894672cf4c28df32a2ee3ff560e2b463e1ab44bb99833064ba09e5f
+ENV GOLANG_DOWNLOAD_SHA256 9fe41313b97e2a6a703f5ae22938c7d9ac4336a128b522376c224ba97e8c7f01
RUN Write-Host ('Downloading {0} ...' -f $env:GOLANG_DOWNLOAD_URL); \
Invoke-WebRequest -Uri $env:GOLANG_DOWNLOAD_URL -OutFile 'go.zip'; \
diff --git a/golang_wheezy/Dockerfile b/golang_wheezy/Dockerfile
index ec2d38b..cd9720c 100644
--- a/golang_wheezy/Dockerfile
+++ b/golang_wheezy/Dockerfile
@@ -9,9 +9,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
pkg-config \
&& rm -rf /var/lib/apt/lists/*
-ENV GOLANG_VERSION 1.7.1
+ENV GOLANG_VERSION 1.7.3
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
-ENV GOLANG_DOWNLOAD_SHA256 43ad621c9b014cde8db17393dc108378d37bc853aa351a6c74bf6432c1bbd182
+ENV GOLANG_DOWNLOAD_SHA256 508028aac0654e993564b6e2014bf2d4a9751e3b286661b0b0040046cf18028e
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" -o golang.tar.gz \
&& echo "$GOLANG_DOWNLOAD_SHA256 golang.tar.gz" | sha256sum -c - \
diff --git a/golang_windowsservercore/Dockerfile b/golang_windowsservercore/Dockerfile
index c1b1bcd..d5837da 100644
--- a/golang_windowsservercore/Dockerfile
+++ b/golang_windowsservercore/Dockerfile
@@ -60,9 +60,9 @@ RUN $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); \
[Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);
# doing this first to share cache across versions more aggressively
-ENV GOLANG_VERSION 1.7.1
+ENV GOLANG_VERSION 1.7.3
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.windows-amd64.zip
-ENV GOLANG_DOWNLOAD_SHA256 af2b836bb894672cf4c28df32a2ee3ff560e2b463e1ab44bb99833064ba09e5f
+ENV GOLANG_DOWNLOAD_SHA256 9fe41313b97e2a6a703f5ae22938c7d9ac4336a128b522376c224ba97e8c7f01
RUN Write-Host ('Downloading {0} ...' -f $env:GOLANG_DOWNLOAD_URL); \
Invoke-WebRequest -Uri $env:GOLANG_DOWNLOAD_URL -OutFile 'go.zip'; \
diff --git a/java_openjdk-7-alpine/Dockerfile b/java_openjdk-7-alpine/Dockerfile
index 9e68903..a19e259 100644
--- a/java_openjdk-7-alpine/Dockerfile
+++ b/java_openjdk-7-alpine/Dockerfile
@@ -26,8 +26,8 @@ RUN { \
ENV JAVA_HOME /usr/lib/jvm/java-1.7-openjdk
ENV PATH $PATH:/usr/lib/jvm/java-1.7-openjdk/jre/bin:/usr/lib/jvm/java-1.7-openjdk/bin
-ENV JAVA_VERSION 7u91
-ENV JAVA_ALPINE_VERSION 7.91.2.6.3-r2
+ENV JAVA_VERSION 7u111
+ENV JAVA_ALPINE_VERSION 7.111.2.6.7-r2
RUN set -x \
&& apk add --no-cache \
diff --git a/java_openjdk-7-jre-alpine/Dockerfile b/java_openjdk-7-jre-alpine/Dockerfile
index 4d6e1e9..b193391 100644
--- a/java_openjdk-7-jre-alpine/Dockerfile
+++ b/java_openjdk-7-jre-alpine/Dockerfile
@@ -26,8 +26,8 @@ RUN { \
ENV JAVA_HOME /usr/lib/jvm/java-1.7-openjdk/jre
ENV PATH $PATH:/usr/lib/jvm/java-1.7-openjdk/jre/bin:/usr/lib/jvm/java-1.7-openjdk/bin
-ENV JAVA_VERSION 7u91
-ENV JAVA_ALPINE_VERSION 7.91.2.6.3-r2
+ENV JAVA_VERSION 7u111
+ENV JAVA_ALPINE_VERSION 7.111.2.6.7-r2
RUN set -x \
&& apk add --no-cache \
diff --git a/openjdk_7-alpine/Dockerfile b/openjdk_7-alpine/Dockerfile
index 9e68903..a19e259 100644
--- a/openjdk_7-alpine/Dockerfile
+++ b/openjdk_7-alpine/Dockerfile
@@ -26,8 +26,8 @@ RUN { \
ENV JAVA_HOME /usr/lib/jvm/java-1.7-openjdk
ENV PATH $PATH:/usr/lib/jvm/java-1.7-openjdk/jre/bin:/usr/lib/jvm/java-1.7-openjdk/bin
-ENV JAVA_VERSION 7u91
-ENV JAVA_ALPINE_VERSION 7.91.2.6.3-r2
+ENV JAVA_VERSION 7u111
+ENV JAVA_ALPINE_VERSION 7.111.2.6.7-r2
RUN set -x \
&& apk add --no-cache \
diff --git a/openjdk_7-jre-alpine/Dockerfile b/openjdk_7-jre-alpine/Dockerfile
index 4d6e1e9..b193391 100644
--- a/openjdk_7-jre-alpine/Dockerfile
+++ b/openjdk_7-jre-alpine/Dockerfile
@@ -26,8 +26,8 @@ RUN { \
ENV JAVA_HOME /usr/lib/jvm/java-1.7-openjdk/jre
ENV PATH $PATH:/usr/lib/jvm/java-1.7-openjdk/jre/bin:/usr/lib/jvm/java-1.7-openjdk/bin
-ENV JAVA_VERSION 7u91
-ENV JAVA_ALPINE_VERSION 7.91.2.6.3-r2
+ENV JAVA_VERSION 7u111
+ENV JAVA_ALPINE_VERSION 7.111.2.6.7-r2
RUN set -x \
&& apk add --no-cache \
diff --git a/php_rc-alpine/Dockerfile b/php_rc-alpine/Dockerfile
index 801180d..5dafc93 100644
--- a/php_rc-alpine/Dockerfile
+++ b/php_rc-alpine/Dockerfile
@@ -39,9 +39,9 @@ RUN mkdir -p $PHP_INI_DIR/conf.d
ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
-ENV PHP_VERSION 7.1.0RC3
-ENV PHP_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz" PHP_ASC_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz.asc"
-ENV PHP_SHA256="" PHP_MD5="2bfa0ad51de4fce87d0175d655f6bf69"
+ENV PHP_VERSION 7.1.0RC4
+ENV PHP_URL="http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz" PHP_ASC_URL=""
+ENV PHP_SHA256="aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258" PHP_MD5="3493df23aa02af833198df94227cb6d9"
RUN set -xe; \
\
diff --git a/php_rc-apache/Dockerfile b/php_rc-apache/Dockerfile
index 72cface..468b88d 100644
--- a/php_rc-apache/Dockerfile
+++ b/php_rc-apache/Dockerfile
@@ -90,9 +90,9 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --with-apxs2
ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
-ENV PHP_VERSION 7.1.0RC3
-ENV PHP_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz" PHP_ASC_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz.asc"
-ENV PHP_SHA256="" PHP_MD5="2bfa0ad51de4fce87d0175d655f6bf69"
+ENV PHP_VERSION 7.1.0RC4
+ENV PHP_URL="http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz" PHP_ASC_URL=""
+ENV PHP_SHA256="aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258" PHP_MD5="3493df23aa02af833198df94227cb6d9"
RUN set -xe; \
\
diff --git a/php_rc-fpm-alpine/Dockerfile b/php_rc-fpm-alpine/Dockerfile
index d3e9180..c3ac365 100644
--- a/php_rc-fpm-alpine/Dockerfile
+++ b/php_rc-fpm-alpine/Dockerfile
@@ -40,9 +40,9 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
-ENV PHP_VERSION 7.1.0RC3
-ENV PHP_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz" PHP_ASC_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz.asc"
-ENV PHP_SHA256="" PHP_MD5="2bfa0ad51de4fce87d0175d655f6bf69"
+ENV PHP_VERSION 7.1.0RC4
+ENV PHP_URL="http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz" PHP_ASC_URL=""
+ENV PHP_SHA256="aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258" PHP_MD5="3493df23aa02af833198df94227cb6d9"
RUN set -xe; \
\
diff --git a/php_rc-fpm/Dockerfile b/php_rc-fpm/Dockerfile
index a41ce45..c597201 100644
--- a/php_rc-fpm/Dockerfile
+++ b/php_rc-fpm/Dockerfile
@@ -35,9 +35,9 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-fpm --with-fpm-user=www-data --with-fpm-gr
ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
-ENV PHP_VERSION 7.1.0RC3
-ENV PHP_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz" PHP_ASC_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz.asc"
-ENV PHP_SHA256="" PHP_MD5="2bfa0ad51de4fce87d0175d655f6bf69"
+ENV PHP_VERSION 7.1.0RC4
+ENV PHP_URL="http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz" PHP_ASC_URL=""
+ENV PHP_SHA256="aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258" PHP_MD5="3493df23aa02af833198df94227cb6d9"
RUN set -xe; \
\
diff --git a/php_rc-zts-alpine/Dockerfile b/php_rc-zts-alpine/Dockerfile
index e65b29b..23f8000 100644
--- a/php_rc-zts-alpine/Dockerfile
+++ b/php_rc-zts-alpine/Dockerfile
@@ -40,9 +40,9 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts
ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
-ENV PHP_VERSION 7.1.0RC3
-ENV PHP_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz" PHP_ASC_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz.asc"
-ENV PHP_SHA256="" PHP_MD5="2bfa0ad51de4fce87d0175d655f6bf69"
+ENV PHP_VERSION 7.1.0RC4
+ENV PHP_URL="http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz" PHP_ASC_URL=""
+ENV PHP_SHA256="aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258" PHP_MD5="3493df23aa02af833198df94227cb6d9"
RUN set -xe; \
\
diff --git a/php_rc-zts/Dockerfile b/php_rc-zts/Dockerfile
index 2b31670..c7641e0 100644
--- a/php_rc-zts/Dockerfile
+++ b/php_rc-zts/Dockerfile
@@ -35,9 +35,9 @@ ENV PHP_EXTRA_CONFIGURE_ARGS --enable-maintainer-zts
ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
-ENV PHP_VERSION 7.1.0RC3
-ENV PHP_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz" PHP_ASC_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz.asc"
-ENV PHP_SHA256="" PHP_MD5="2bfa0ad51de4fce87d0175d655f6bf69"
+ENV PHP_VERSION 7.1.0RC4
+ENV PHP_URL="http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz" PHP_ASC_URL=""
+ENV PHP_SHA256="aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258" PHP_MD5="3493df23aa02af833198df94227cb6d9"
RUN set -xe; \
\
diff --git a/php_rc/Dockerfile b/php_rc/Dockerfile
index ad2ce71..8b1f149 100644
--- a/php_rc/Dockerfile
+++ b/php_rc/Dockerfile
@@ -34,9 +34,9 @@ RUN mkdir -p $PHP_INI_DIR/conf.d
ENV GPG_KEYS A917B1ECDA84AEC2B568FED6F50ABC807BD5DCD0
-ENV PHP_VERSION 7.1.0RC3
-ENV PHP_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz" PHP_ASC_URL="http://downloads.php.net/~davey/php-7.1.0RC3.tar.xz.asc"
-ENV PHP_SHA256="" PHP_MD5="2bfa0ad51de4fce87d0175d655f6bf69"
+ENV PHP_VERSION 7.1.0RC4
+ENV PHP_URL="http://downloads.php.net/~krakjoe/php-7.1.0RC4.tar.xz" PHP_ASC_URL=""
+ENV PHP_SHA256="aa06af4cd4674b4a57969d39566497d700c291f433209f8c83b75ffc1128d258" PHP_MD5="3493df23aa02af833198df94227cb6d9"
RUN set -xe; \
\ |
Build test of #2270; 0b23eee ( $ bashbrew build golang:1.6.3
Using bashbrew/cache:ea8ed8a8aa1b6185a1eeb3b79e1885c3d6e36f52554f2318f3b22c70fca9762b (golang:1.6.3)
Tagging golang:1.6.3
Tagging golang:1.6
$ test/run.sh golang:1.6.3
testing golang:1.6.3
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'golang-hello-world' [5/5]...passed
$ bashbrew build golang:1.6.3-onbuild
Using bashbrew/cache:1ee6a4663d00bef56038bee1ad2524d6a252faa86850981cb75859768f5ae55e (golang:1.6.3-onbuild)
Tagging golang:1.6.3-onbuild
Tagging golang:1.6-onbuild
$ test/run.sh golang:1.6.3-onbuild
testing golang:1.6.3-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build golang:1.6.3-wheezy
Using bashbrew/cache:ece3876908340ae6a77d385e8bd6672185c5b74495221f486b0fffadd1de092d (golang:1.6.3-wheezy)
Tagging golang:1.6.3-wheezy
Tagging golang:1.6-wheezy
$ test/run.sh golang:1.6.3-wheezy
testing golang:1.6.3-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'golang-hello-world' [5/5]...passed
$ bashbrew build golang:1.6.3-alpine
Building bashbrew/cache:e758a3dc3c152593d27be5a76bc8928dcdf4f4b2a86cf9cdfdc6257cf2a8be73 (golang:1.6.3-alpine)
Tagging golang:1.6.3-alpine
Tagging golang:1.6-alpine
$ test/run.sh golang:1.6.3-alpine
testing golang:1.6.3-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'golang-hello-world' [5/5]...passed
$ bashbrew build golang:1.6.3-windowsservercore
skipping "golang:1.6.3-windowsservercore" (due to unsatisfactory constraints ["windowsservercore"])
$ test/run.sh golang:1.6.3-windowsservercore
testing golang:1.6.3-windowsservercore
image does not exist!
$ bashbrew build golang:1.6.3-nanoserver
skipping "golang:1.6.3-nanoserver" (due to unsatisfactory constraints ["nanoserver"])
$ test/run.sh golang:1.6.3-nanoserver
testing golang:1.6.3-nanoserver
image does not exist!
$ bashbrew build golang:1.7.3
Building bashbrew/cache:57de20c1733603659ba6978837c79b3a5ecde32efc75d2fce97d50b9bbe327a8 (golang:1.7.3)
Tagging golang:1.7.3
Tagging golang:1.7
Tagging golang:1
Tagging golang:latest
$ test/run.sh golang:1.7.3
testing golang:1.7.3
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'golang-hello-world' [5/5]...passed
$ bashbrew build golang:1.7.3-onbuild
Building bashbrew/cache:7c060ddcda1f9f532f3598d4455f87a4c90f989fa6fed3770a23ac5264053649 (golang:1.7.3-onbuild)
Tagging golang:1.7.3-onbuild
Tagging golang:1.7-onbuild
Tagging golang:1-onbuild
Tagging golang:onbuild
$ test/run.sh golang:1.7.3-onbuild
testing golang:1.7.3-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build golang:1.7.3-wheezy
Building bashbrew/cache:5fac91b21b3b5e43de8e97d7e5077e46529ac86dfca45e513e6dbaf4d7dc6d63 (golang:1.7.3-wheezy)
Tagging golang:1.7.3-wheezy
Tagging golang:1.7-wheezy
Tagging golang:1-wheezy
Tagging golang:wheezy
$ test/run.sh golang:1.7.3-wheezy
testing golang:1.7.3-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'golang-hello-world' [5/5]...passed
$ bashbrew build golang:1.7.3-alpine
Building bashbrew/cache:1420db1f318020bd07a2828fd867adcf4a5820f34cea3ade812a65885733e2ab (golang:1.7.3-alpine)
Tagging golang:1.7.3-alpine
Tagging golang:1.7-alpine
Tagging golang:1-alpine
Tagging golang:alpine
$ test/run.sh golang:1.7.3-alpine
testing golang:1.7.3-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'golang-hello-world' [5/5]...passed
$ bashbrew build golang:1.7.3-windowsservercore
skipping "golang:1.7.3-windowsservercore" (due to unsatisfactory constraints ["windowsservercore"])
$ test/run.sh golang:1.7.3-windowsservercore
testing golang:1.7.3-windowsservercore
image does not exist!
$ bashbrew build golang:1.7.3-nanoserver
skipping "golang:1.7.3-nanoserver" (due to unsatisfactory constraints ["nanoserver"])
$ test/run.sh golang:1.7.3-nanoserver
testing golang:1.7.3-nanoserver
image does not exist!
$ bashbrew build java:6b38-jdk
Using bashbrew/cache:5fbabbdafe4d933c12dccb8a05772c93399835a31e8a1e8d3d39c0ae65053e41 (java:6b38-jdk)
Tagging java:6b38-jdk
Tagging java:6b38
Tagging java:6-jdk
Tagging java:6
Tagging java:openjdk-6b38-jdk
Tagging java:openjdk-6b38
Tagging java:openjdk-6-jdk
Tagging java:openjdk-6
$ test/run.sh java:6b38-jdk
testing java:6b38-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build java:6b38-jre
Using bashbrew/cache:5e36ebcbecddca7f2708da36e3172eb13511123b912d47f1029c80a1c16af1d2 (java:6b38-jre)
Tagging java:6b38-jre
Tagging java:6-jre
Tagging java:openjdk-6b38-jre
Tagging java:openjdk-6-jre
$ test/run.sh java:6b38-jre
testing java:6b38-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build java:7u111-jdk
Using bashbrew/cache:5420d4640f914c5ea8163646578fe1e2dd842d1b87a0ea4e092da333e08ae1d1 (java:7u111-jdk)
Tagging java:7u111-jdk
Tagging java:7u111
Tagging java:7-jdk
Tagging java:7
Tagging java:openjdk-7u111-jdk
Tagging java:openjdk-7u111
Tagging java:openjdk-7-jdk
Tagging java:openjdk-7
$ test/run.sh java:7u111-jdk
testing java:7u111-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build java:7u111-jdk-alpine
Building bashbrew/cache:7e3b1f74a72eb1bdaaf85311fb465d396986d56066ec204d7f6b4e2f7b6c63f0 (java:7u111-jdk-alpine)
Tagging java:7u111-jdk-alpine
Tagging java:7u111-alpine
Tagging java:7-jdk-alpine
Tagging java:7-alpine
Tagging java:openjdk-7u111-jdk-alpine
Tagging java:openjdk-7u111-alpine
Tagging java:openjdk-7-jdk-alpine
Tagging java:openjdk-7-alpine
$ test/run.sh java:7u111-jdk-alpine
testing java:7u111-jdk-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 java:7u111-jre
Using bashbrew/cache:f4cb50685a825f0f401e9bb85b1c6d7b12100626f7c9f8b1cf96b82a763054d1 (java:7u111-jre)
Tagging java:7u111-jre
Tagging java:7-jre
Tagging java:openjdk-7u111-jre
Tagging java:openjdk-7-jre
$ test/run.sh java:7u111-jre
testing java:7u111-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build java:7u111-jre-alpine
Building bashbrew/cache:15a03a96e0454c3b04a187cd49a5a740922629cbc9fb9cd8764d4501c06bad65 (java:7u111-jre-alpine)
Tagging java:7u111-jre-alpine
Tagging java:7-jre-alpine
Tagging java:openjdk-7u111-jre-alpine
Tagging java:openjdk-7-jre-alpine
$ test/run.sh java:7u111-jre-alpine
testing java:7u111-jre-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 java:8u102-jdk
Using bashbrew/cache:28892bb780f2b8ff96618bf2c0705bb2ad3bf2838e5fe55568c6ba042cb86c94 (java:8u102-jdk)
Tagging java:8u102-jdk
Tagging java:8u102
Tagging java:8-jdk
Tagging java:8
Tagging java:jdk
Tagging java:latest
Tagging java:openjdk-8u102-jdk
Tagging java:openjdk-8u102
Tagging java:openjdk-8-jdk
Tagging java:openjdk-8
$ test/run.sh java:8u102-jdk
testing java:8u102-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build java:8u92-jdk-alpine
Building bashbrew/cache:15ae34032a5a33204da78c986be477c1995b12b5514f6a125a38e8d2dc74868f (java:8u92-jdk-alpine)
Tagging java:8u92-jdk-alpine
Tagging java:8u92-alpine
Tagging java:8-jdk-alpine
Tagging java:8-alpine
Tagging java:jdk-alpine
Tagging java:alpine
Tagging java:openjdk-8u92-jdk-alpine
Tagging java:openjdk-8u92-alpine
Tagging java:openjdk-8-jdk-alpine
Tagging java:openjdk-8-alpine
$ test/run.sh java:8u92-jdk-alpine
testing java:8u92-jdk-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 java:8u102-jre
Using bashbrew/cache:126415730d21c9358fa8827952c3110ec65cb2a53c4b13bd5e96ecf9152a235f (java:8u102-jre)
Tagging java:8u102-jre
Tagging java:8-jre
Tagging java:jre
Tagging java:openjdk-8u102-jre
Tagging java:openjdk-8-jre
$ test/run.sh java:8u102-jre
testing java:8u102-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build java:8u92-jre-alpine
Building bashbrew/cache:a950d39a3623cae83da047678bf3c7a8aa28e8b3901b0d4d8c9f8c020607f464 (java:8u92-jre-alpine)
Tagging java:8u92-jre-alpine
Tagging java:8-jre-alpine
Tagging java:jre-alpine
Tagging java:openjdk-8u92-jre-alpine
Tagging java:openjdk-8-jre-alpine
$ test/run.sh java:8u92-jre-alpine
testing java:8u92-jre-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 java:9-b140-jdk
Using bashbrew/cache:58a83811750acacefd4217a87dd61f480ccf75d98caeb6acfe6694b37355ea02 (java:9-b140-jdk)
Tagging java:9-b140-jdk
Tagging java:9-b140
Tagging java:9-jdk
Tagging java:9
Tagging java:openjdk-9-b140-jdk
Tagging java:openjdk-9-b140
Tagging java:openjdk-9-jdk
Tagging java:openjdk-9
$ test/run.sh java:9-b140-jdk
testing java:9-b140-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build java:9-b140-jre
Using bashbrew/cache:33c267c8344538d3356a4864eebe4d036c3a3226eaed667644ebf87213904664 (java:9-b140-jre)
Tagging java:9-b140-jre
Tagging java:9-jre
Tagging java:openjdk-9-b140-jre
Tagging java:openjdk-9-jre
$ test/run.sh java:9-b140-jre
testing java:9-b140-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:6b38-jdk
Using bashbrew/cache:5fbabbdafe4d933c12dccb8a05772c93399835a31e8a1e8d3d39c0ae65053e41 (openjdk:6b38-jdk)
Tagging openjdk:6b38-jdk
Tagging openjdk:6b38
Tagging openjdk:6-jdk
Tagging openjdk:6
$ test/run.sh openjdk:6b38-jdk
testing openjdk:6b38-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:6b38-jre
Using bashbrew/cache:5e36ebcbecddca7f2708da36e3172eb13511123b912d47f1029c80a1c16af1d2 (openjdk:6b38-jre)
Tagging openjdk:6b38-jre
Tagging openjdk:6-jre
$ test/run.sh openjdk:6b38-jre
testing openjdk:6b38-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:7u111-jdk
Using bashbrew/cache:5420d4640f914c5ea8163646578fe1e2dd842d1b87a0ea4e092da333e08ae1d1 (openjdk:7u111-jdk)
Tagging openjdk:7u111-jdk
Tagging openjdk:7u111
Tagging openjdk:7-jdk
Tagging openjdk:7
$ test/run.sh openjdk:7u111-jdk
testing openjdk:7u111-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:7u111-jdk-alpine
Using bashbrew/cache:7e3b1f74a72eb1bdaaf85311fb465d396986d56066ec204d7f6b4e2f7b6c63f0 (openjdk:7u111-jdk-alpine)
Tagging openjdk:7u111-jdk-alpine
Tagging openjdk:7u111-alpine
Tagging openjdk:7-jdk-alpine
Tagging openjdk:7-alpine
$ test/run.sh openjdk:7u111-jdk-alpine
testing openjdk:7u111-jdk-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 openjdk:7u111-jre
Using bashbrew/cache:f4cb50685a825f0f401e9bb85b1c6d7b12100626f7c9f8b1cf96b82a763054d1 (openjdk:7u111-jre)
Tagging openjdk:7u111-jre
Tagging openjdk:7-jre
$ test/run.sh openjdk:7u111-jre
testing openjdk:7u111-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:7u111-jre-alpine
Using bashbrew/cache:15a03a96e0454c3b04a187cd49a5a740922629cbc9fb9cd8764d4501c06bad65 (openjdk:7u111-jre-alpine)
Tagging openjdk:7u111-jre-alpine
Tagging openjdk:7-jre-alpine
$ test/run.sh openjdk:7u111-jre-alpine
testing openjdk:7u111-jre-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 openjdk:8u102-jdk
Using bashbrew/cache:28892bb780f2b8ff96618bf2c0705bb2ad3bf2838e5fe55568c6ba042cb86c94 (openjdk:8u102-jdk)
Tagging openjdk:8u102-jdk
Tagging openjdk:8u102
Tagging openjdk:8-jdk
Tagging openjdk:8
Tagging openjdk:jdk
Tagging openjdk:latest
$ test/run.sh openjdk:8u102-jdk
testing openjdk:8u102-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:8u92-jdk-alpine
Using bashbrew/cache:15ae34032a5a33204da78c986be477c1995b12b5514f6a125a38e8d2dc74868f (openjdk:8u92-jdk-alpine)
Tagging openjdk:8u92-jdk-alpine
Tagging openjdk:8u92-alpine
Tagging openjdk:8-jdk-alpine
Tagging openjdk:8-alpine
Tagging openjdk:jdk-alpine
Tagging openjdk:alpine
$ test/run.sh openjdk:8u92-jdk-alpine
testing openjdk:8u92-jdk-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 openjdk:8u102-jre
Using bashbrew/cache:126415730d21c9358fa8827952c3110ec65cb2a53c4b13bd5e96ecf9152a235f (openjdk:8u102-jre)
Tagging openjdk:8u102-jre
Tagging openjdk:8-jre
Tagging openjdk:jre
$ test/run.sh openjdk:8u102-jre
testing openjdk:8u102-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:8u92-jre-alpine
Using bashbrew/cache:a950d39a3623cae83da047678bf3c7a8aa28e8b3901b0d4d8c9f8c020607f464 (openjdk:8u92-jre-alpine)
Tagging openjdk:8u92-jre-alpine
Tagging openjdk:8-jre-alpine
Tagging openjdk:jre-alpine
$ test/run.sh openjdk:8u92-jre-alpine
testing openjdk:8u92-jre-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 openjdk:9-b140-jdk
Using bashbrew/cache:58a83811750acacefd4217a87dd61f480ccf75d98caeb6acfe6694b37355ea02 (openjdk:9-b140-jdk)
Tagging openjdk:9-b140-jdk
Tagging openjdk:9-b140
Tagging openjdk:9-jdk
Tagging openjdk:9
$ test/run.sh openjdk:9-b140-jdk
testing openjdk:9-b140-jdk
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build openjdk:9-b140-jre
Using bashbrew/cache:33c267c8344538d3356a4864eebe4d036c3a3226eaed667644ebf87213904664 (openjdk:9-b140-jre)
Tagging openjdk:9-b140-jre
Tagging openjdk:9-jre
$ test/run.sh openjdk:9-b140-jre
testing openjdk:9-b140-jre
'utc' [1/4]...passed
'cve-2014--shellshock' [2/4]...passed
'no-hard-coded-passwords' [3/4]...passed
'override-cmd' [4/4]...passed
$ bashbrew build php:7.1.0RC4-cli
Building bashbrew/cache:a0a9db0090d358633c1eb396dca28a1d1b6c71275baa2bf7daf8056f3fc77cdc (php:7.1.0RC4-cli)
Tagging php:7.1.0RC4-cli
Tagging php:7.1-rc-cli
Tagging php:rc-cli
Tagging php:7.1.0RC4
Tagging php:7.1-rc
Tagging php:rc
$ test/run.sh php:7.1.0RC4-cli
testing php:7.1.0RC4-cli
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.1.0RC4-alpine
Building bashbrew/cache:879b464507019d1ab6884980c2c40484e379d3148ae9ba0caf76d86be19a54c4 (php:7.1.0RC4-alpine)
Tagging php:7.1.0RC4-alpine
Tagging php:7.1-rc-alpine
Tagging php:rc-alpine
$ test/run.sh php:7.1.0RC4-alpine
testing php:7.1.0RC4-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.1.0RC4-apache
Building bashbrew/cache:62a1c82cb3be8bfeec31056f1e675176a95e2d0a58128fc05ce514618f466af7 (php:7.1.0RC4-apache)
Tagging php:7.1.0RC4-apache
Tagging php:7.1-rc-apache
Tagging php:rc-apache
$ test/run.sh php:7.1.0RC4-apache
testing php:7.1.0RC4-apache
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-apache-hello-web' [7/7]...passed
$ bashbrew build php:7.1.0RC4-fpm
Building bashbrew/cache:7421de48c9cf91d27ad6025c3628ae62fdf2345af10432b4dfa8027d03fd8f4f (php:7.1.0RC4-fpm)
Tagging php:7.1.0RC4-fpm
Tagging php:7.1-rc-fpm
Tagging php:rc-fpm
$ test/run.sh php:7.1.0RC4-fpm
testing php:7.1.0RC4-fpm
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-fpm-hello-web' [7/7]...passed
$ bashbrew build php:7.1.0RC4-fpm-alpine
Building bashbrew/cache:7425a8c28f877f80622cb39dfd27392924a095858f7abea9edafad59efab785a (php:7.1.0RC4-fpm-alpine)
Tagging php:7.1.0RC4-fpm-alpine
Tagging php:7.1-rc-fpm-alpine
Tagging php:rc-fpm-alpine
$ test/run.sh php:7.1.0RC4-fpm-alpine
testing php:7.1.0RC4-fpm-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.1.0RC4-zts
Building bashbrew/cache:1d9dabec1dd32e4f4edba46f65fe5eff521a05a75f69fd39446c7d9c6fc5e84e (php:7.1.0RC4-zts)
Tagging php:7.1.0RC4-zts
Tagging php:7.1-rc-zts
Tagging php:rc-zts
$ test/run.sh php:7.1.0RC4-zts
testing php:7.1.0RC4-zts
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.1.0RC4-zts-alpine
Building bashbrew/cache:813cd38118ada8d38dfe7c1313c6d8ae2921c51e4c2868403022c75ec135445b (php:7.1.0RC4-zts-alpine)
Tagging php:7.1.0RC4-zts-alpine
Tagging php:7.1-rc-zts-alpine
Tagging php:rc-zts-alpine
$ test/run.sh php:7.1.0RC4-zts-alpine
testing php:7.1.0RC4-zts-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.0.12-cli
Using bashbrew/cache:c3773b5fd86ca5fbb2c4be5ad664bc7133babdbc71be9784c32df064e814689f (php:7.0.12-cli)
Tagging php:7.0.12-cli
Tagging php:7.0-cli
Tagging php:7-cli
Tagging php:cli
Tagging php:7.0.12
Tagging php:7.0
Tagging php:7
Tagging php:latest
$ test/run.sh php:7.0.12-cli
testing php:7.0.12-cli
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.0.12-alpine
Building bashbrew/cache:16cb1d2c0f587a0c1d5b592d3787fbe19310236873d8895dc6c1e87d83df2599 (php:7.0.12-alpine)
Tagging php:7.0.12-alpine
Tagging php:7.0-alpine
Tagging php:7-alpine
Tagging php:alpine
$ test/run.sh php:7.0.12-alpine
testing php:7.0.12-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.0.12-apache
Using bashbrew/cache:9e99dd24f1cd5c46b10b49693f347b76e0e77d7ab071b67267896681eb88821a (php:7.0.12-apache)
Tagging php:7.0.12-apache
Tagging php:7.0-apache
Tagging php:7-apache
Tagging php:apache
$ test/run.sh php:7.0.12-apache
testing php:7.0.12-apache
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-apache-hello-web' [7/7]...passed
$ bashbrew build php:7.0.12-fpm
Using bashbrew/cache:6a8293089e98700e65d75eeae48a10afb4aeff0daf1d657828b7c7aa76cb3c3c (php:7.0.12-fpm)
Tagging php:7.0.12-fpm
Tagging php:7.0-fpm
Tagging php:7-fpm
Tagging php:fpm
$ test/run.sh php:7.0.12-fpm
testing php:7.0.12-fpm
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-fpm-hello-web' [7/7]...passed
$ bashbrew build php:7.0.12-fpm-alpine
Building bashbrew/cache:9959650f4806fadf2518c95e0a5c5aa7241ce178c18a9956150108e541a4c3ee (php:7.0.12-fpm-alpine)
Tagging php:7.0.12-fpm-alpine
Tagging php:7.0-fpm-alpine
Tagging php:7-fpm-alpine
Tagging php:fpm-alpine
$ test/run.sh php:7.0.12-fpm-alpine
testing php:7.0.12-fpm-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.0.12-zts
Using bashbrew/cache:3a1823f64f791ead5375ba8a8609945b38120e4388c0615098b8f68d10f45402 (php:7.0.12-zts)
Tagging php:7.0.12-zts
Tagging php:7.0-zts
Tagging php:7-zts
Tagging php:zts
$ test/run.sh php:7.0.12-zts
testing php:7.0.12-zts
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:7.0.12-zts-alpine
Building bashbrew/cache:1a9aec384b05ff9e6e4568e339c6bfd76a1a8dd53273cfc650df4c9b462a958c (php:7.0.12-zts-alpine)
Tagging php:7.0.12-zts-alpine
Tagging php:7.0-zts-alpine
Tagging php:7-zts-alpine
Tagging php:zts-alpine
$ test/run.sh php:7.0.12-zts-alpine
testing php:7.0.12-zts-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:5.6.27-cli
Using bashbrew/cache:02f93cf718f10839036fe8466cfd18bc5f9535aed7a807e20b39d156dfddb3fd (php:5.6.27-cli)
Tagging php:5.6.27-cli
Tagging php:5.6-cli
Tagging php:5-cli
Tagging php:5.6.27
Tagging php:5.6
Tagging php:5
$ test/run.sh php:5.6.27-cli
testing php:5.6.27-cli
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:5.6.27-alpine
Building bashbrew/cache:8b7d12a653750f35375648497fd6bf9c8b5e1d77578e17f9613d000e68fdaa92 (php:5.6.27-alpine)
Tagging php:5.6.27-alpine
Tagging php:5.6-alpine
Tagging php:5-alpine
$ test/run.sh php:5.6.27-alpine
testing php:5.6.27-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:5.6.27-apache
Using bashbrew/cache:6587ab8a8a43c205d30f4babfbb530246d343ae1b36383cfb8a30d66cef18d54 (php:5.6.27-apache)
Tagging php:5.6.27-apache
Tagging php:5.6-apache
Tagging php:5-apache
$ test/run.sh php:5.6.27-apache
testing php:5.6.27-apache
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-apache-hello-web' [7/7]...passed
$ bashbrew build php:5.6.27-fpm
Using bashbrew/cache:33176b7f1cfc0de80df4367e20c0007a4ba4c0217e90cbdc6bb71d45cba80459 (php:5.6.27-fpm)
Tagging php:5.6.27-fpm
Tagging php:5.6-fpm
Tagging php:5-fpm
$ test/run.sh php:5.6.27-fpm
testing php:5.6.27-fpm
'utc' [1/7]...passed
'cve-2014--shellshock' [2/7]...passed
'no-hard-coded-passwords' [3/7]...passed
'override-cmd' [4/7]...passed
'php-ext-install' [5/7]...passed
'php-hello-world' [6/7]...passed
'php-fpm-hello-web' [7/7]...passed
$ bashbrew build php:5.6.27-fpm-alpine
Building bashbrew/cache:d25b170d4a1fbd8502b63ec2802d3e5dd66e2337f7b8dd3e3acc310dd80db1da (php:5.6.27-fpm-alpine)
Tagging php:5.6.27-fpm-alpine
Tagging php:5.6-fpm-alpine
Tagging php:5-fpm-alpine
$ test/run.sh php:5.6.27-fpm-alpine
testing php:5.6.27-fpm-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:5.6.27-zts
Using bashbrew/cache:6f86e7a373c15dda4327f28f120a34846ae6c1c24cc773ca9b7457b01d1f9cae (php:5.6.27-zts)
Tagging php:5.6.27-zts
Tagging php:5.6-zts
Tagging php:5-zts
$ test/run.sh php:5.6.27-zts
testing php:5.6.27-zts
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
$ bashbrew build php:5.6.27-zts-alpine
Building bashbrew/cache:1c6946c08a22ed883e3180bb499e31323614131bfe25ae564761a491c035ca0f (php:5.6.27-zts-alpine)
Tagging php:5.6.27-zts-alpine
Tagging php:5.6-zts-alpine
Tagging php:5-zts-alpine
$ test/run.sh php:5.6.27-zts-alpine
testing php:5.6.27-zts-alpine
'utc' [1/6]...passed
'cve-2014--shellshock' [2/6]...passed
'no-hard-coded-passwords' [3/6]...passed
'override-cmd' [4/6]...passed
'php-ext-install' [5/6]...passed
'php-hello-world' [6/6]...passed
The following images failed at least one test: golang:1.6.3-windowsservercore golang:1.6.3-nanoserver golang:1.7.3-windowsservercore golang:1.7.3-nanoserver |
$ bashbrew build https://raw.githubusercontent.com/infosiftr/stackbrew/0b23eeed08b35608ee15d1dbdc3438ccd5319d0a/library/golang
skipping "golang:1.6.3" (due to exclusive constraints)
skipping "golang:1.6.3-onbuild" (due to exclusive constraints)
skipping "golang:1.6.3-wheezy" (due to exclusive constraints)
skipping "golang:1.6.3-alpine" (due to exclusive constraints)
Using bashbrew/cache:e5537379fd92814790468110bd159f7a70505ed2769cf4e88f395534513a5536 (golang:1.6.3-windowsservercore)
Tagging golang:1.6.3-windowsservercore
Tagging golang:1.6-windowsservercore
Using bashbrew/cache:cea7a9c1f4c4c958932604561b51214ddc8ae2a36f6c3d2ce34917749aeab1fd (golang:1.6.3-nanoserver)
Tagging golang:1.6.3-nanoserver
Tagging golang:1.6-nanoserver
skipping "golang:1.7.3" (due to exclusive constraints)
skipping "golang:1.7.3-onbuild" (due to exclusive constraints)
skipping "golang:1.7.3-wheezy" (due to exclusive constraints)
skipping "golang:1.7.3-alpine" (due to exclusive constraints)
Building bashbrew/cache:0c117a0f78af05c8e3bb4d85f4f107c6941edd078cb4ebb2d191833223daa722 (golang:1.7.3-windowsservercore)
Tagging golang:1.7.3-windowsservercore
Tagging golang:1.7-windowsservercore
Tagging golang:1-windowsservercore
Tagging golang:windowsservercore
Building bashbrew/cache:0b8aef744aeba68c3e97bf1ff1eae1cf09ebe00e5b7fa55dd1965b309634333c (golang:1.7.3-nanoserver)
Tagging golang:1.7.3-nanoserver
Tagging golang:1.7-nanoserver
Tagging golang:1-nanoserver
Tagging golang:nanoserver |
yosifkit
approved these changes
Oct 19, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
golang
: 1.7.3java
: alpine 7.111.2.6.7-r2openjdk
: alpine 7.111.2.6.7-r2php
: 7.1.0RC4