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

erlang/otp 20.3.8.26 #7540

Merged
merged 1 commit into from
Feb 29, 2020
Merged

Conversation

getong
Copy link
Contributor

@getong getong commented Feb 28, 2020

No description provided.

@yosifkit
Copy link
Member

Diff:
diff --git a/_bashbrew-list b/_bashbrew-list
index 4d44731..e17b974 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -23,9 +23,9 @@ erlang:20.3-slim
 erlang:20.3.8
 erlang:20.3.8-alpine
 erlang:20.3.8-slim
-erlang:20.3.8.25
-erlang:20.3.8.25-alpine
-erlang:20.3.8.25-slim
+erlang:20.3.8.26
+erlang:20.3.8.26-alpine
+erlang:20.3.8.26-slim
 erlang:21
 erlang:21-alpine
 erlang:21-slim
@@ -44,9 +44,9 @@ erlang:22-slim
 erlang:22.2
 erlang:22.2-alpine
 erlang:22.2-slim
-erlang:22.2.7
-erlang:22.2.7-alpine
-erlang:22.2.7-slim
+erlang:22.2.8
+erlang:22.2.8-alpine
+erlang:22.2.8-slim
 erlang:alpine
 erlang:latest
 erlang:slim
diff --git a/erlang_20-alpine/Dockerfile b/erlang_20-alpine/Dockerfile
index 89175fb..318ff28 100644
--- a/erlang_20-alpine/Dockerfile
+++ b/erlang_20-alpine/Dockerfile
@@ -1,12 +1,12 @@
 FROM alpine:3.9
 
-ENV OTP_VERSION="20.3.8.25" \
-     REBAR3_VERSION="3.13.0"
+ENV OTP_VERSION="20.3.8.26" \
+     REBAR3_VERSION="3.13.1"
 
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
-	&& OTP_DOWNLOAD_SHA256="36f36753b8cf4db35f0d0c1cb88a32d4309670859174492ff8d10f5cf1f93720" \
-	&& REBAR3_DOWNLOAD_SHA256="49ecf89d04676d077712a10d8252bbda73998a3badf8b342481530fbc685a123" \
+	&& OTP_DOWNLOAD_SHA256="dce78b60938a48b887317e5222cff946fd4af36666153ab2f0f022aa91755813" \
+	&& REBAR3_DOWNLOAD_SHA256="706cc0770062bde2674abc01964c68553398fe4d8023605b305cfe326b92520f" \
 	&& apk add --no-cache --virtual .fetch-deps \
 		curl \
 		ca-certificates \
diff --git a/erlang_20-slim/Dockerfile b/erlang_20-slim/Dockerfile
index 734bb93..5485898 100644
--- a/erlang_20-slim/Dockerfile
+++ b/erlang_20-slim/Dockerfile
@@ -1,12 +1,12 @@
 FROM debian:stretch
 
-ENV OTP_VERSION="20.3.8.25"
+ENV OTP_VERSION="20.3.8.26"
 
 # We'll install the build dependencies, and purge them on the last step to make
 # sure our final image contains only what we've just built:
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
-	&& OTP_DOWNLOAD_SHA256="36f36753b8cf4db35f0d0c1cb88a32d4309670859174492ff8d10f5cf1f93720" \
+	&& OTP_DOWNLOAD_SHA256="dce78b60938a48b887317e5222cff946fd4af36666153ab2f0f022aa91755813" \
 	&& fetchDeps=' \
 		curl \
 		ca-certificates' \
diff --git a/erlang_20/Dockerfile b/erlang_20/Dockerfile
index 8aa47f5..cfa981a 100644
--- a/erlang_20/Dockerfile
+++ b/erlang_20/Dockerfile
@@ -1,12 +1,12 @@
 FROM buildpack-deps:stretch
 
-ENV OTP_VERSION="20.3.8.25"
+ENV OTP_VERSION="20.3.8.26"
 
 # We'll install the build dependencies for erlang-odbc along with the erlang
 # build process:
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
-	&& OTP_DOWNLOAD_SHA256="36f36753b8cf4db35f0d0c1cb88a32d4309670859174492ff8d10f5cf1f93720" \
+	&& OTP_DOWNLOAD_SHA256="dce78b60938a48b887317e5222cff946fd4af36666153ab2f0f022aa91755813" \
 	&& runtimeDeps='libodbc1 \
 			libsctp1 \
 			libwxgtk3.0' \
@@ -51,11 +51,11 @@ RUN set -xe \
 	&& install -v ./rebar /usr/local/bin/ \
 	&& rm -rf /usr/src/rebar-src
 
-ENV REBAR3_VERSION="3.13.0"
+ENV REBAR3_VERSION="3.13.1"
 
 RUN set -xe \
 	&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
-	&& REBAR3_DOWNLOAD_SHA256="49ecf89d04676d077712a10d8252bbda73998a3badf8b342481530fbc685a123" \
+	&& REBAR3_DOWNLOAD_SHA256="706cc0770062bde2674abc01964c68553398fe4d8023605b305cfe326b92520f" \
 	&& mkdir -p /usr/src/rebar3-src \
 	&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
 	&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_alpine/Dockerfile b/erlang_alpine/Dockerfile
index 5acb274..a4e7d20 100644
--- a/erlang_alpine/Dockerfile
+++ b/erlang_alpine/Dockerfile
@@ -1,14 +1,14 @@
 FROM alpine:3.11
 
-ENV OTP_VERSION="22.2.7" \
-    REBAR3_VERSION="3.13.0"
+ENV OTP_VERSION="22.2.8" \
+    REBAR3_VERSION="3.13.1"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
-	&& OTP_DOWNLOAD_SHA256="29487837a2dd6e3184257cdec067cd3f5c0cd9517fbfb2ffc962589d46afbf75" \
-	&& REBAR3_DOWNLOAD_SHA256="49ecf89d04676d077712a10d8252bbda73998a3badf8b342481530fbc685a123" \
+	&& OTP_DOWNLOAD_SHA256="71f73ddd59db521928a0f6c8d4354d6f4e9f4bfbd0b40d321cd5253a6c79b095" \
+	&& REBAR3_DOWNLOAD_SHA256="706cc0770062bde2674abc01964c68553398fe4d8023605b305cfe326b92520f" \
 	&& apk add --no-cache --virtual .fetch-deps \
 		curl \
 		ca-certificates \
diff --git a/erlang_latest/Dockerfile b/erlang_latest/Dockerfile
index 7b1f2cf..cad6b7d 100644
--- a/erlang_latest/Dockerfile
+++ b/erlang_latest/Dockerfile
@@ -1,7 +1,7 @@
 FROM buildpack-deps:buster
 
-ENV OTP_VERSION="22.2.7" \
-    REBAR3_VERSION="3.13.0"
+ENV OTP_VERSION="22.2.8" \
+    REBAR3_VERSION="3.13.1"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
@@ -9,7 +9,7 @@ LABEL org.opencontainers.image.version=$OTP_VERSION
 # build process:
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
-	&& OTP_DOWNLOAD_SHA256="29487837a2dd6e3184257cdec067cd3f5c0cd9517fbfb2ffc962589d46afbf75" \
+	&& OTP_DOWNLOAD_SHA256="71f73ddd59db521928a0f6c8d4354d6f4e9f4bfbd0b40d321cd5253a6c79b095" \
 	&& runtimeDeps='libodbc1 \
 			libsctp1 \
 			libwxgtk3.0' \
@@ -56,7 +56,7 @@ RUN set -xe \
 
 RUN set -xe \
 	&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
-	&& REBAR3_DOWNLOAD_SHA256="49ecf89d04676d077712a10d8252bbda73998a3badf8b342481530fbc685a123" \
+	&& REBAR3_DOWNLOAD_SHA256="706cc0770062bde2674abc01964c68553398fe4d8023605b305cfe326b92520f" \
 	&& mkdir -p /usr/src/rebar3-src \
 	&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
 	&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
diff --git a/erlang_slim/Dockerfile b/erlang_slim/Dockerfile
index 8a08e7b..90529b1 100644
--- a/erlang_slim/Dockerfile
+++ b/erlang_slim/Dockerfile
@@ -1,6 +1,6 @@
 FROM debian:buster
 
-ENV OTP_VERSION="22.2.7"
+ENV OTP_VERSION="22.2.8"
 
 LABEL org.opencontainers.image.version=$OTP_VERSION
 
@@ -8,7 +8,7 @@ LABEL org.opencontainers.image.version=$OTP_VERSION
 # sure our final image contains only what we've just built:
 RUN set -xe \
 	&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
-	&& OTP_DOWNLOAD_SHA256="29487837a2dd6e3184257cdec067cd3f5c0cd9517fbfb2ffc962589d46afbf75" \
+	&& OTP_DOWNLOAD_SHA256="71f73ddd59db521928a0f6c8d4354d6f4e9f4bfbd0b40d321cd5253a6c79b095" \
 	&& fetchDeps=' \
 		curl \
 		ca-certificates' \

@yosifkit
Copy link
Member

Build test of #7540; 3f2f82f; amd64 (erlang):

$ bashbrew build erlang:22.2.8
Building bashbrew/cache:e6a0989a9bf62d9abf045ee2aaba74cd610bd269a235ea70fee47681376d0c59 (erlang:22.2.8)
Tagging erlang:22.2.8
Tagging erlang:22.2
Tagging erlang:22
Tagging erlang:latest

$ test/run.sh erlang:22.2.8
testing erlang:22.2.8
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:22.2.8-slim
Building bashbrew/cache:368617d157010cbcc035e0a7a716defefee2ce7ad84e7fd4a890aaebd37dbae6 (erlang:22.2.8-slim)
Tagging erlang:22.2.8-slim
Tagging erlang:22.2-slim
Tagging erlang:22-slim
Tagging erlang:slim

$ test/run.sh erlang:22.2.8-slim
testing erlang:22.2.8-slim
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:22.2.8-alpine
Building bashbrew/cache:0ec1d4acca289ca5a7213c15fa13bf524dfbd48ef3ad137d3b57250028fe6661 (erlang:22.2.8-alpine)
Tagging erlang:22.2.8-alpine
Tagging erlang:22.2-alpine
Tagging erlang:22-alpine
Tagging erlang:alpine

$ test/run.sh erlang:22.2.8-alpine
testing erlang:22.2.8-alpine
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:21.3.8.13
Using bashbrew/cache:e804abfe8e561ed436d6fb77b8fc834ebf52e6f62f7019bd893bb044befbc9b4 (erlang:21.3.8.13)
Tagging erlang:21.3.8.13
Tagging erlang:21.3.8
Tagging erlang:21.3
Tagging erlang:21

$ test/run.sh erlang:21.3.8.13
testing erlang:21.3.8.13
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:21.3.8.13-slim
Building bashbrew/cache:da5955f6b9e11e27527832535b93dabbe58fbb5c74dfd4b8bbbe040d701263cf (erlang:21.3.8.13-slim)
Tagging erlang:21.3.8.13-slim
Tagging erlang:21.3.8-slim
Tagging erlang:21.3-slim
Tagging erlang:21-slim

$ test/run.sh erlang:21.3.8.13-slim
testing erlang:21.3.8.13-slim
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:21.3.8.13-alpine
Using bashbrew/cache:14c0e31ef433e91a46672bb87d12b8000fbd2e31a4bc8ea434f350ae18df1f84 (erlang:21.3.8.13-alpine)
Tagging erlang:21.3.8.13-alpine
Tagging erlang:21.3.8-alpine
Tagging erlang:21.3-alpine
Tagging erlang:21-alpine

$ test/run.sh erlang:21.3.8.13-alpine
testing erlang:21.3.8.13-alpine
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:20.3.8.26
Building bashbrew/cache:17493be254206975719154cca1ede59bb7b05b29d73da8c6f11285fe526c1ecb (erlang:20.3.8.26)
Tagging erlang:20.3.8.26
Tagging erlang:20.3.8
Tagging erlang:20.3
Tagging erlang:20

$ test/run.sh erlang:20.3.8.26
testing erlang:20.3.8.26
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:20.3.8.26-slim
Building bashbrew/cache:79ef15d928275f727525a868661a19f70ae67d6cab1f3cac51e39c3428420a4e (erlang:20.3.8.26-slim)
Tagging erlang:20.3.8.26-slim
Tagging erlang:20.3.8-slim
Tagging erlang:20.3-slim
Tagging erlang:20-slim

$ test/run.sh erlang:20.3.8.26-slim
testing erlang:20.3.8.26-slim
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:20.3.8.26-alpine
Building bashbrew/cache:057016c0c90af418ec593a35683c1ad6d49dd5b353169520945caff51c821d87 (erlang:20.3.8.26-alpine)
Tagging erlang:20.3.8.26-alpine
Tagging erlang:20.3.8-alpine
Tagging erlang:20.3-alpine
Tagging erlang:20-alpine

$ test/run.sh erlang:20.3.8.26-alpine
testing erlang:20.3.8.26-alpine
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:19.3.6.13
Using bashbrew/cache:4eff1536e6722f1850b2c256f124bb7564ef99b0a724bfca18812f6f9d86d3a2 (erlang:19.3.6.13)
Tagging erlang:19.3.6.13
Tagging erlang:19.3.6
Tagging erlang:19.3
Tagging erlang:19

$ test/run.sh erlang:19.3.6.13
testing erlang:19.3.6.13
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:19.3.6.13-slim
Building bashbrew/cache:470bf5d82ad7cb733c1812bd4ece6b3c0f2507b7c412457864482123f5d4b0d8 (erlang:19.3.6.13-slim)
Tagging erlang:19.3.6.13-slim
Tagging erlang:19.3.6-slim
Tagging erlang:19.3-slim
Tagging erlang:19-slim

$ test/run.sh erlang:19.3.6.13-slim
testing erlang:19.3.6.13-slim
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:18.3.4.11
Using bashbrew/cache:e997771b68b2d06eb50d5694d7011f1c7db06ac3d4f322a543460da157c4e07d (erlang:18.3.4.11)
Tagging erlang:18.3.4.11
Tagging erlang:18.3.4
Tagging erlang:18.3
Tagging erlang:18

$ test/run.sh erlang:18.3.4.11
testing erlang:18.3.4.11
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed


$ bashbrew build erlang:18.3.4.11-slim
Building bashbrew/cache:ecc558df8fcf84ae271ac8b5b76fa8bfa6a226428fca7e084c6c5dfcc3fa9b03 (erlang:18.3.4.11-slim)
Tagging erlang:18.3.4.11-slim
Tagging erlang:18.3.4-slim
Tagging erlang:18.3-slim
Tagging erlang:18-slim

$ test/run.sh erlang:18.3.4.11-slim
testing erlang:18.3.4.11-slim
	'utc' [1/5]...passed
	'cve-2014--shellshock' [2/5]...passed
	'no-hard-coded-passwords' [3/5]...passed
	'override-cmd' [4/5]...passed
	'erlang-hello-world' [5/5]...passed

@yosifkit yosifkit merged commit f94731a into docker-library:master Feb 29, 2020
@getong getong deleted the erlang-20.3.8.26 branch February 29, 2020 00:40
@getong getong restored the erlang-20.3.8.26 branch March 1, 2020 15:29
@getong getong deleted the erlang-20.3.8.26 branch March 7, 2020 01:23
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