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 27.0 #471

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions 27/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM buildpack-deps:bookworm

ENV OTP_VERSION="27.0-rc3" \
ENV OTP_VERSION="27.0" \
REBAR3_VERSION="3.23.0"

LABEL org.opencontainers.image.version=$OTP_VERSION
Expand All @@ -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="b2716ed3943f49e715123904aad3f226aecba49f03e30222f271b064d9078836" \
&& OTP_DOWNLOAD_SHA256="5c8ad9143ee81c26aae4699c4bc64f76c5e838efb778f988ad9bb1305f505fed" \
&& runtimeDeps='libodbc1 \
libsctp1 \
libwxgtk3.2 \
Expand Down
4 changes: 2 additions & 2 deletions 27/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM alpine:3.19

ENV OTP_VERSION="27.0-rc3" \
ENV OTP_VERSION="27.0" \
REBAR3_VERSION="3.23.0"

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="b2716ed3943f49e715123904aad3f226aecba49f03e30222f271b064d9078836" \
&& OTP_DOWNLOAD_SHA256="5c8ad9143ee81c26aae4699c4bc64f76c5e838efb778f988ad9bb1305f505fed" \
&& REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516" \
&& apk add --no-cache --virtual .fetch-deps \
curl \
Expand Down
4 changes: 2 additions & 2 deletions 27/slim/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bookworm

ENV OTP_VERSION="27.0-rc3" \
ENV OTP_VERSION="27.0" \
REBAR3_VERSION="3.23.0"

LABEL org.opencontainers.image.version=$OTP_VERSION
Expand All @@ -9,7 +9,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="b2716ed3943f49e715123904aad3f226aecba49f03e30222f271b064d9078836" \
&& OTP_DOWNLOAD_SHA256="5c8ad9143ee81c26aae4699c4bc64f76c5e838efb778f988ad9bb1305f505fed" \
&& fetchDeps=' \
curl \
ca-certificates' \
Expand Down
Loading