-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Add i386 arch to node image #3676
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
Merged
Merged
Conversation
This file contains hidden or 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
Diff:diff --git a/_bashbrew-arches b/_bashbrew-arches
index 843b00f..3c14f37 100644
--- a/_bashbrew-arches
+++ b/_bashbrew-arches
@@ -1,92 +1,110 @@
node:alpine @ amd64
node:alpine @ arm32v6
node:alpine @ arm64v8
+node:alpine @ i386
node:alpine @ ppc64le
node:alpine @ s390x
node:argon @ amd64
node:argon @ arm32v7
node:argon @ arm64v8
+node:argon @ i386
node:argon @ ppc64le
node:argon-alpine @ amd64
node:argon-onbuild @ amd64
node:argon-onbuild @ arm32v7
node:argon-onbuild @ arm64v8
+node:argon-onbuild @ i386
node:argon-onbuild @ ppc64le
node:argon-slim @ amd64
node:argon-slim @ arm32v7
node:argon-slim @ arm64v8
+node:argon-slim @ i386
node:argon-slim @ ppc64le
node:argon-stretch @ amd64
node:argon-stretch @ arm32v7
node:argon-stretch @ arm64v8
+node:argon-stretch @ i386
node:argon-stretch @ ppc64le
node:argon-wheezy @ amd64
node:boron @ amd64
node:boron @ arm32v7
node:boron @ arm64v8
+node:boron @ i386
node:boron @ ppc64le
node:boron @ s390x
node:boron-alpine @ amd64
node:boron-onbuild @ amd64
node:boron-onbuild @ arm32v7
node:boron-onbuild @ arm64v8
+node:boron-onbuild @ i386
node:boron-onbuild @ ppc64le
node:boron-onbuild @ s390x
node:boron-slim @ amd64
node:boron-slim @ arm32v7
node:boron-slim @ arm64v8
+node:boron-slim @ i386
node:boron-slim @ ppc64le
node:boron-slim @ s390x
node:boron-stretch @ amd64
node:boron-stretch @ arm32v7
node:boron-stretch @ arm64v8
+node:boron-stretch @ i386
node:boron-stretch @ ppc64le
node:boron-stretch @ s390x
node:boron-wheezy @ amd64
node:carbon @ amd64
node:carbon @ arm32v7
node:carbon @ arm64v8
+node:carbon @ i386
node:carbon @ ppc64le
node:carbon @ s390x
node:carbon-alpine @ amd64
node:carbon-alpine @ arm32v6
node:carbon-alpine @ arm64v8
+node:carbon-alpine @ i386
node:carbon-alpine @ ppc64le
node:carbon-alpine @ s390x
node:carbon-onbuild @ amd64
node:carbon-onbuild @ arm32v7
node:carbon-onbuild @ arm64v8
+node:carbon-onbuild @ i386
node:carbon-onbuild @ ppc64le
node:carbon-onbuild @ s390x
node:carbon-slim @ amd64
node:carbon-slim @ arm32v7
node:carbon-slim @ arm64v8
+node:carbon-slim @ i386
node:carbon-slim @ ppc64le
node:carbon-slim @ s390x
node:carbon-stretch @ amd64
node:carbon-stretch @ arm32v7
node:carbon-stretch @ arm64v8
+node:carbon-stretch @ i386
node:carbon-stretch @ ppc64le
node:carbon-stretch @ s390x
node:carbon-wheezy @ amd64
node:latest @ amd64
node:latest @ arm32v7
node:latest @ arm64v8
+node:latest @ i386
node:latest @ ppc64le
node:latest @ s390x
node:onbuild @ amd64
node:onbuild @ arm32v7
node:onbuild @ arm64v8
+node:onbuild @ i386
node:onbuild @ ppc64le
node:onbuild @ s390x
node:slim @ amd64
node:slim @ arm32v7
node:slim @ arm64v8
+node:slim @ i386
node:slim @ ppc64le
node:slim @ s390x
node:stretch @ amd64
node:stretch @ arm32v7
node:stretch @ arm64v8
+node:stretch @ i386
node:stretch @ ppc64le
node:stretch @ s390x
node:wheezy @ amd64
diff --git a/node_argon-slim/Dockerfile b/node_argon-slim/Dockerfile
index 9d45ffa..e6fba84 100644
--- a/node_argon-slim/Dockerfile
+++ b/node_argon-slim/Dockerfile
@@ -30,6 +30,7 @@ RUN buildDeps='xz-utils' \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& set -x \
diff --git a/node_argon-stretch/Dockerfile b/node_argon-stretch/Dockerfile
index 0952735..4d6f99f 100644
--- a/node_argon-stretch/Dockerfile
+++ b/node_argon-stretch/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \
diff --git a/node_argon/Dockerfile b/node_argon/Dockerfile
index c5327ff..df02a5c 100644
--- a/node_argon/Dockerfile
+++ b/node_argon/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \
diff --git a/node_boron-slim/Dockerfile b/node_boron-slim/Dockerfile
index cf34dee..f334455 100644
--- a/node_boron-slim/Dockerfile
+++ b/node_boron-slim/Dockerfile
@@ -30,6 +30,7 @@ RUN buildDeps='xz-utils' \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& set -x \
diff --git a/node_boron-stretch/Dockerfile b/node_boron-stretch/Dockerfile
index 4e11e09..92e7ebe 100644
--- a/node_boron-stretch/Dockerfile
+++ b/node_boron-stretch/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \
diff --git a/node_boron/Dockerfile b/node_boron/Dockerfile
index 602c0f4..78b0cf2 100644
--- a/node_boron/Dockerfile
+++ b/node_boron/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \
diff --git a/node_carbon-slim/Dockerfile b/node_carbon-slim/Dockerfile
index 41ac82b..1cf9740 100644
--- a/node_carbon-slim/Dockerfile
+++ b/node_carbon-slim/Dockerfile
@@ -30,6 +30,7 @@ RUN buildDeps='xz-utils' \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& set -x \
diff --git a/node_carbon-stretch/Dockerfile b/node_carbon-stretch/Dockerfile
index c0b28e3..f4498d9 100644
--- a/node_carbon-stretch/Dockerfile
+++ b/node_carbon-stretch/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \
diff --git a/node_carbon/Dockerfile b/node_carbon/Dockerfile
index d65f593..732a67f 100644
--- a/node_carbon/Dockerfile
+++ b/node_carbon/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \
diff --git a/node_latest/Dockerfile b/node_latest/Dockerfile
index baa3996..c324db5 100644
--- a/node_latest/Dockerfile
+++ b/node_latest/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \
diff --git a/node_slim/Dockerfile b/node_slim/Dockerfile
index 949e13e..18a4b2d 100644
--- a/node_slim/Dockerfile
+++ b/node_slim/Dockerfile
@@ -30,6 +30,7 @@ RUN buildDeps='xz-utils' \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& set -x \
diff --git a/node_stretch/Dockerfile b/node_stretch/Dockerfile
index 91f21a6..2cfff9e 100644
--- a/node_stretch/Dockerfile
+++ b/node_stretch/Dockerfile
@@ -29,6 +29,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
s390x) ARCH='s390x';; \
arm64) ARCH='arm64';; \
armhf) ARCH='armv7l';; \
+ i386) ARCH='x86';; \
*) echo "unsupported architecture"; exit 1 ;; \
esac \
&& curl -SLO "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" \ |
Build test of #3676; aa3d34e; $ bashbrew build node:9.0.0
Building bashbrew/cache:f966547ed64a1a127caf7839d39852fdc1f2a00879208f2bf1653a96fff327f3 (node:9.0.0)
Tagging node:9.0.0
Tagging node:9.0
Tagging node:9
Tagging node:latest
$ test/run.sh node:9.0.0
testing node:9.0.0
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:9.0.0-alpine
Using bashbrew/cache:518c213f2da345ad87517d6be1209c5abb5b3ff367f17938df400d584e3db9da (node:9.0.0-alpine)
Tagging node:9.0.0-alpine
Tagging node:9.0-alpine
Tagging node:9-alpine
Tagging node:alpine
$ test/run.sh node:9.0.0-alpine
testing node:9.0.0-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:9.0.0-onbuild
Building bashbrew/cache:a96dd481830f0da309485fdb357cf7ce329d35b10b594123000864ca91d82e8e (node:9.0.0-onbuild)
Tagging node:9.0.0-onbuild
Tagging node:9.0-onbuild
Tagging node:9-onbuild
Tagging node:onbuild
$ test/run.sh node:9.0.0-onbuild
testing node:9.0.0-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:9.0.0-slim
Building bashbrew/cache:9d2175d358f56298568969d53d984356eb46960b6a2328a68dfbd83293f09dc8 (node:9.0.0-slim)
Tagging node:9.0.0-slim
Tagging node:9.0-slim
Tagging node:9-slim
Tagging node:slim
$ test/run.sh node:9.0.0-slim
testing node:9.0.0-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:9.0.0-stretch
Building bashbrew/cache:41b2f331ab2ad7789b9a635e7f60628a4a4973f4a27be24cb907046a7aa01d30 (node:9.0.0-stretch)
Tagging node:9.0.0-stretch
Tagging node:9.0-stretch
Tagging node:9-stretch
Tagging node:stretch
$ test/run.sh node:9.0.0-stretch
testing node:9.0.0-stretch
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:9.0.0-wheezy
Using bashbrew/cache:46d8aa15c96bfe6f1ffeebedbb9be0d604e62f5d1de121afe84d39d0008920c1 (node:9.0.0-wheezy)
Tagging node:9.0.0-wheezy
Tagging node:9.0-wheezy
Tagging node:9-wheezy
Tagging node:wheezy
$ test/run.sh node:9.0.0-wheezy
testing node:9.0.0-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:8.9.0
Building bashbrew/cache:b75a303a757adcb047ab8d460c31f716720e294cbbc0bb81da87716fa5dd4552 (node:8.9.0)
Tagging node:8.9.0
Tagging node:8.9
Tagging node:8
Tagging node:carbon
$ test/run.sh node:8.9.0
testing node:8.9.0
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:8.9.0-alpine
Using bashbrew/cache:98bc4b22487fdadfafde48325f2277ba5195b8873969cdc250dd1665be7f2beb (node:8.9.0-alpine)
Tagging node:8.9.0-alpine
Tagging node:8.9-alpine
Tagging node:8-alpine
Tagging node:carbon-alpine
$ test/run.sh node:8.9.0-alpine
testing node:8.9.0-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:8.9.0-onbuild
Building bashbrew/cache:8d8149b0cd4f67ef603f5fe2d4bf75793c84e3215c12a66ed3cbc2dfc0999710 (node:8.9.0-onbuild)
Tagging node:8.9.0-onbuild
Tagging node:8.9-onbuild
Tagging node:8-onbuild
Tagging node:carbon-onbuild
$ test/run.sh node:8.9.0-onbuild
testing node:8.9.0-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:8.9.0-slim
Building bashbrew/cache:9396f8078258cfa7970322dbf77c5e9afbaf3fd07efd643106698af2e48bff73 (node:8.9.0-slim)
Tagging node:8.9.0-slim
Tagging node:8.9-slim
Tagging node:8-slim
Tagging node:carbon-slim
$ test/run.sh node:8.9.0-slim
testing node:8.9.0-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:8.9.0-stretch
Building bashbrew/cache:d7f8bdb2b244d852736ccc8ea8fc060263e1b5696d81fdce236f92c6d0f18d5e (node:8.9.0-stretch)
Tagging node:8.9.0-stretch
Tagging node:8.9-stretch
Tagging node:8-stretch
Tagging node:carbon-stretch
$ test/run.sh node:8.9.0-stretch
testing node:8.9.0-stretch
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:8.9.0-wheezy
Using bashbrew/cache:2c15f460fb9522591055ea9e88e93000964cd1a1aecb7d667fd6f119fec19986 (node:8.9.0-wheezy)
Tagging node:8.9.0-wheezy
Tagging node:8.9-wheezy
Tagging node:8-wheezy
Tagging node:carbon-wheezy
$ test/run.sh node:8.9.0-wheezy
testing node:8.9.0-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.11.5
Building bashbrew/cache:bc3a612e492af0b848d1adc3f6d2465b80723652db1e81ec78d8d81e66668b43 (node:6.11.5)
Tagging node:6.11.5
Tagging node:6.11
Tagging node:6
Tagging node:boron
$ test/run.sh node:6.11.5
testing node:6.11.5
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.11.5-alpine
Using bashbrew/cache:d7e100f9403a919432c6148fe278713b28d7d9c744df2150c43c12e87b532d40 (node:6.11.5-alpine)
Tagging node:6.11.5-alpine
Tagging node:6.11-alpine
Tagging node:6-alpine
Tagging node:boron-alpine
$ test/run.sh node:6.11.5-alpine
testing node:6.11.5-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.11.5-onbuild
Building bashbrew/cache:cb49134409022121bab494bd03ed952e78797ce2202733e71dbee6c46e5ec5bb (node:6.11.5-onbuild)
Tagging node:6.11.5-onbuild
Tagging node:6.11-onbuild
Tagging node:6-onbuild
Tagging node:boron-onbuild
$ test/run.sh node:6.11.5-onbuild
testing node:6.11.5-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:6.11.5-slim
Building bashbrew/cache:161ff2e5314a47778fdab1088af617c89a3acbfa8be6652f853f948011a580b8 (node:6.11.5-slim)
Tagging node:6.11.5-slim
Tagging node:6.11-slim
Tagging node:6-slim
Tagging node:boron-slim
$ test/run.sh node:6.11.5-slim
testing node:6.11.5-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.11.5-stretch
Building bashbrew/cache:126fcd188f9d4458c54408d53b2a1379bebd887c59ca22d858156e1baa3afc81 (node:6.11.5-stretch)
Tagging node:6.11.5-stretch
Tagging node:6.11-stretch
Tagging node:6-stretch
Tagging node:boron-stretch
$ test/run.sh node:6.11.5-stretch
testing node:6.11.5-stretch
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:6.11.5-wheezy
Using bashbrew/cache:721478ab6af37eb479205e3d76693dfe1c189240d3ab0ca5a7ff34b65b5e4db6 (node:6.11.5-wheezy)
Tagging node:6.11.5-wheezy
Tagging node:6.11-wheezy
Tagging node:6-wheezy
Tagging node:boron-wheezy
$ test/run.sh node:6.11.5-wheezy
testing node:6.11.5-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.8.5
Building bashbrew/cache:eba7d160c884f9b4a30f6610a729d775a2c159c36e5fc5860a4f3df79034d095 (node:4.8.5)
Tagging node:4.8.5
Tagging node:4.8
Tagging node:4
Tagging node:argon
$ test/run.sh node:4.8.5
testing node:4.8.5
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.8.5-alpine
Using bashbrew/cache:cd3a8442e3f7e592393ee332d095000fe0e0a7d454a96d7cb2613e2b2711704f (node:4.8.5-alpine)
Tagging node:4.8.5-alpine
Tagging node:4.8-alpine
Tagging node:4-alpine
Tagging node:argon-alpine
$ test/run.sh node:4.8.5-alpine
testing node:4.8.5-alpine
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.8.5-onbuild
Building bashbrew/cache:eccc55dd70454805720ad5c1c9df23f50ec642fa4c9206fbac880ac380eb8818 (node:4.8.5-onbuild)
Tagging node:4.8.5-onbuild
Tagging node:4.8-onbuild
Tagging node:4-onbuild
Tagging node:argon-onbuild
$ test/run.sh node:4.8.5-onbuild
testing node:4.8.5-onbuild
'override-cmd' [1/1]...passed
$ bashbrew build node:4.8.5-slim
Building bashbrew/cache:1c3d5ab24b7f3e231f74d325ec7948a27d44af9c08cd1a1260d838650d465f8f (node:4.8.5-slim)
Tagging node:4.8.5-slim
Tagging node:4.8-slim
Tagging node:4-slim
Tagging node:argon-slim
$ test/run.sh node:4.8.5-slim
testing node:4.8.5-slim
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.8.5-stretch
Building bashbrew/cache:933b6cb4103bb20bd3e3edd9465a96b9aa098efb27136113e83fd245b1f9e08d (node:4.8.5-stretch)
Tagging node:4.8.5-stretch
Tagging node:4.8-stretch
Tagging node:4-stretch
Tagging node:argon-stretch
$ test/run.sh node:4.8.5-stretch
testing node:4.8.5-stretch
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
$ bashbrew build node:4.8.5-wheezy
Using bashbrew/cache:1dfdebd7904afcf959af66d9f212d458396fa9865fd9742a68a815dd298300bb (node:4.8.5-wheezy)
Tagging node:4.8.5-wheezy
Tagging node:4.8-wheezy
Tagging node:4-wheezy
Tagging node:argon-wheezy
$ test/run.sh node:4.8.5-wheezy
testing node:4.8.5-wheezy
'utc' [1/5]...passed
'cve-2014--shellshock' [2/5]...passed
'no-hard-coded-passwords' [3/5]...passed
'override-cmd' [4/5]...passed
'node-hello-world' [5/5]...passed
|
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.
See nodejs/docker-node#576