diff --git a/.gitignore b/.gitignore index d548f66d..04413790 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .jq-template.awk +template-helper-functions.jq \ No newline at end of file diff --git a/3.10/alpine/Dockerfile b/3.10/alpine/Dockerfile index 8ee87eb6..91bd932a 100644 --- a/3.10/alpine/Dockerfile +++ b/3.10/alpine/Dockerfile @@ -5,6 +5,7 @@ # # Alpine Linux is not officially supported by the RabbitMQ team -- use at your own risk! + FROM alpine:3.18 as build-base RUN apk add --no-cache \ @@ -194,8 +195,17 @@ FROM alpine:3.18 # OPENSSL/ERLANG_INSTALL_PATH_PREFIX are defined in a different stage, so define them again ENV ERLANG_INSTALL_PATH_PREFIX /opt/erlang ENV OPENSSL_INSTALL_PATH_PREFIX /opt/openssl + COPY --from=erlang-builder $ERLANG_INSTALL_PATH_PREFIX $ERLANG_INSTALL_PATH_PREFIX +COPY <