Skip to content

Commit 838581d

Browse files
authored
chore: Update to OTP-27.2.1 and Alpine 3.21 (#493)
- Update to OTP-27.2.1 - bookworm, alpine, and slim - Upated to Alpine 3.21 - OTP-27.2.1 includes GH-9211 resolving GCC14 and poll issue on Alpine 3.21
1 parent 31b3802 commit 838581d

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

27/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
FROM buildpack-deps:bookworm
22

3-
ENV OTP_VERSION="27.2" \
3+
ENV OTP_VERSION="27.2.1" \
44
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

88
# We'll install the build dependencies for erlang-odbc along with the erlang
99
# build process:
1010
RUN set -xe \
11-
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
12-
&& OTP_DOWNLOAD_SHA256="0727cf869622544a2434a104109b31f5fadb8dc6b532287aea182fab95922ea8" \
11+
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \
12+
&& OTP_DOWNLOAD_SHA256="07982134e10637dde57cf9cdc6dda6f65425810229986136d184766d4db9eda3" \
1313
&& runtimeDeps='libodbc1 \
1414
libsctp1 \
1515
libwxgtk3.2 \

27/alpine/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
FROM alpine:3.20
1+
FROM alpine:3.21
22

3-
ENV OTP_VERSION="27.2" \
3+
ENV OTP_VERSION="27.2.1" \
44
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

88
RUN set -xe \
9-
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
10-
&& OTP_DOWNLOAD_SHA256="0727cf869622544a2434a104109b31f5fadb8dc6b532287aea182fab95922ea8" \
9+
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \
10+
&& OTP_DOWNLOAD_SHA256="07982134e10637dde57cf9cdc6dda6f65425810229986136d184766d4db9eda3" \
1111
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
1212
&& apk add --no-cache --virtual .fetch-deps \
1313
curl \

27/slim/Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
FROM debian:bookworm
22

3-
ENV OTP_VERSION="27.2" \
3+
ENV OTP_VERSION="27.2.1" \
44
REBAR3_VERSION="3.24.0"
55

66
LABEL org.opencontainers.image.version=$OTP_VERSION
77

88
# We'll install the build dependencies, and purge them on the last step to make
99
# sure our final image contains only what we've just built:
1010
RUN set -xe \
11-
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
12-
&& OTP_DOWNLOAD_SHA256="0727cf869622544a2434a104109b31f5fadb8dc6b532287aea182fab95922ea8" \
11+
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/releases/download/OTP-${OTP_VERSION}/otp_src_${OTP_VERSION}.tar.gz" \
12+
&& OTP_DOWNLOAD_SHA256="07982134e10637dde57cf9cdc6dda6f65425810229986136d184766d4db9eda3" \
1313
&& fetchDeps=' \
1414
curl \
1515
ca-certificates' \

0 commit comments

Comments
 (0)