File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:bookworm
2
2
3
- ENV OTP_VERSION="27.2" \
3
+ ENV OTP_VERSION="27.2.1 " \
4
4
REBAR3_VERSION="3.24.0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
# We'll install the build dependencies for erlang-odbc along with the erlang
9
9
# build process:
10
10
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 " \
13
13
&& runtimeDeps='libodbc1 \
14
14
libsctp1 \
15
15
libwxgtk3.2 \
Original file line number Diff line number Diff line change 1
- FROM alpine:3.20
1
+ FROM alpine:3.21
2
2
3
- ENV OTP_VERSION="27.2" \
3
+ ENV OTP_VERSION="27.2.1 " \
4
4
REBAR3_VERSION="3.24.0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
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 " \
11
11
&& REBAR3_DOWNLOAD_SHA256="391b0eaa2825bb427fef1e55a0d166493059175f57a33b00346b84a20398216c" \
12
12
&& apk add --no-cache --virtual .fetch-deps \
13
13
curl \
Original file line number Diff line number Diff line change 1
1
FROM debian:bookworm
2
2
3
- ENV OTP_VERSION="27.2" \
3
+ ENV OTP_VERSION="27.2.1 " \
4
4
REBAR3_VERSION="3.24.0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
# We'll install the build dependencies, and purge them on the last step to make
9
9
# sure our final image contains only what we've just built:
10
10
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 " \
13
13
&& fetchDeps=' \
14
14
curl \
15
15
ca-certificates' \
You can’t perform that action at this time.
0 commit comments