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 22.3.4.8 #8581

Merged
merged 1 commit into from
Aug 19, 2020
Merged

erlang/otp 22.3.4.8 #8581

merged 1 commit into from
Aug 19, 2020

Conversation

getong
Copy link
Contributor

@getong getong commented Aug 19, 2020

@github-actions
Copy link

Diff for 5b5b093:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 383c42e..529ac87 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -51,19 +51,19 @@ Architectures: amd64, arm32v7, arm64v8, i386
 GitCommit: 0e7cc44242f6cf9e6ac84925f70ead97fda96c43
 Directory: 21/slim
 
-Tags: 22.3.4.7, 22.3.4, 22.3, 22
+Tags: 22.3.4.8, 22.3.4, 22.3, 22
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 468ab458365f56f0b710437ea7c9c5642dd80a82
+GitCommit: ccf9841cb6b25ac4962aeab9e05804bd86fb3e7b
 Directory: 22
 
-Tags: 22.3.4.7-alpine, 22.3.4-alpine, 22.3-alpine, 22-alpine
+Tags: 22.3.4.8-alpine, 22.3.4-alpine, 22.3-alpine, 22-alpine
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 468ab458365f56f0b710437ea7c9c5642dd80a82
+GitCommit: ccf9841cb6b25ac4962aeab9e05804bd86fb3e7b
 Directory: 22/alpine
 
-Tags: 22.3.4.7-slim, 22.3.4-slim, 22.3-slim, 22-slim
+Tags: 22.3.4.8-slim, 22.3.4-slim, 22.3-slim, 22-slim
 Architectures: amd64, arm32v7, arm64v8, i386, ppc64le, s390x
-GitCommit: 468ab458365f56f0b710437ea7c9c5642dd80a82
+GitCommit: ccf9841cb6b25ac4962aeab9e05804bd86fb3e7b
 Directory: 22/slim
 
 Tags: 23.0.3, 23.0, 23, latest
diff --git a/_bashbrew-list b/_bashbrew-list
index fb8e56f..cf76ddc 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -47,9 +47,9 @@ erlang:22.3-slim
 erlang:22.3.4
 erlang:22.3.4-alpine
 erlang:22.3.4-slim
-erlang:22.3.4.7
-erlang:22.3.4.7-alpine
-erlang:22.3.4.7-slim
+erlang:22.3.4.8
+erlang:22.3.4.8-alpine
+erlang:22.3.4.8-slim
 erlang:23
 erlang:23-alpine
 erlang:23-slim
diff --git a/erlang_22-alpine/Dockerfile b/erlang_22-alpine/Dockerfile
index 8010df6..f986bb4 100644
--- a/erlang_22-alpine/Dockerfile
+++ b/erlang_22-alpine/Dockerfile
@@ -1,13 +1,13 @@
 FROM alpine:3.11
 
-ENV OTP_VERSION="22.3.4.7" \
+ENV OTP_VERSION="22.3.4.8" \
     REBAR3_VERSION="3.13.2"
 
 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="9bafa7a6040ecd18a0b0b05ed014bd186722ef4bf8925b70e9661d3eb5886e66" \
+	&& OTP_DOWNLOAD_SHA256="e3a3611220ddf931029f64c3fcca0d197101b2e35adbadd0272ff96e037a4874" \
 	&& REBAR3_DOWNLOAD_SHA256="e14cdc1f5b7d363a238a9f555f89e878bc4fc836c970571b41b90ee947f91505" \
 	&& apk add --no-cache --virtual .fetch-deps \
 		curl \
diff --git a/erlang_22-slim/Dockerfile b/erlang_22-slim/Dockerfile
index 8f45d08..8e577a3 100644
--- a/erlang_22-slim/Dockerfile
+++ b/erlang_22-slim/Dockerfile
@@ -1,6 +1,6 @@
 FROM debian:buster
 
-ENV OTP_VERSION="22.3.4.7"
+ENV OTP_VERSION="22.3.4.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="9bafa7a6040ecd18a0b0b05ed014bd186722ef4bf8925b70e9661d3eb5886e66" \
+	&& OTP_DOWNLOAD_SHA256="e3a3611220ddf931029f64c3fcca0d197101b2e35adbadd0272ff96e037a4874" \
 	&& fetchDeps=' \
 		curl \
 		ca-certificates' \
diff --git a/erlang_22/Dockerfile b/erlang_22/Dockerfile
index 76db1b4..f3a99e6 100644
--- a/erlang_22/Dockerfile
+++ b/erlang_22/Dockerfile
@@ -1,6 +1,6 @@
 FROM buildpack-deps:buster
 
-ENV OTP_VERSION="22.3.4.7" \
+ENV OTP_VERSION="22.3.4.8" \
     REBAR3_VERSION="3.13.2"
 
 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="9bafa7a6040ecd18a0b0b05ed014bd186722ef4bf8925b70e9661d3eb5886e66" \
+	&& OTP_DOWNLOAD_SHA256="e3a3611220ddf931029f64c3fcca0d197101b2e35adbadd0272ff96e037a4874" \
 	&& runtimeDeps='libodbc1 \
 			libsctp1 \
 			libwxgtk3.0' \

@yosifkit yosifkit merged commit f86da1a into docker-library:master Aug 19, 2020
@getong getong deleted the erlang-22.3.4.8 branch August 20, 2020 01:18
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.

2 participants