File tree Expand file tree Collapse file tree 6 files changed +14
-16
lines changed Expand file tree Collapse file tree 6 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:buster
2
2
3
3
ENV OTP_VERSION="22.3.4.27" \
4
- REBAR3_VERSION="3.23.0"
4
+ REBAR3_VERSION="3.20.0" \
5
+ REBAR_VERSION="2.6.4"
5
6
6
7
LABEL org.opencontainers.image.version=$OTP_VERSION
7
8
@@ -39,8 +40,6 @@ CMD ["erl"]
39
40
40
41
# extra useful tools here: rebar & rebar3
41
42
42
- ENV REBAR_VERSION="2.6.4"
43
-
44
43
RUN set -xe \
45
44
&& REBAR_DOWNLOAD_URL="https://github.com/rebar/rebar/archive/${REBAR_VERSION}.tar.gz" \
46
45
&& REBAR_DOWNLOAD_SHA256="577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
@@ -56,7 +55,7 @@ RUN set -xe \
56
55
57
56
RUN set -xe \
58
57
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
59
- && REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516 " \
58
+ && REBAR3_DOWNLOAD_SHA256="53ed7f294a8b8fb4d7d75988c69194943831c104d39832a1fa30307b1a8593de " \
60
59
&& mkdir -p /usr/src/rebar3-src \
61
60
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
62
61
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.16
2
2
3
3
ENV OTP_VERSION="22.3.4.27" \
4
- REBAR3_VERSION="3.23 .0"
4
+ REBAR3_VERSION="3.20 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
RUN set -xe \
9
9
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
10
10
&& OTP_DOWNLOAD_SHA256="0fb5dc388a4d6f1c7c0e250b5a44466727f35794b0566cad4190cd7c68ca5062" \
11
- && REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516 " \
11
+ && REBAR3_DOWNLOAD_SHA256="53ed7f294a8b8fb4d7d75988c69194943831c104d39832a1fa30307b1a8593de " \
12
12
&& apk add --no-cache --virtual .fetch-deps \
13
13
curl \
14
14
ca-certificates \
Original file line number Diff line number Diff line change 1
1
FROM debian:buster
2
2
3
3
ENV OTP_VERSION="22.3.4.27" \
4
- REBAR3_VERSION="3.23 .0"
4
+ REBAR3_VERSION="3.20 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -47,7 +47,7 @@ RUN set -xe \
47
47
&& make install ) \
48
48
&& find /usr/local -name examples | xargs rm -rf \
49
49
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50
- && REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516 " \
50
+ && REBAR3_DOWNLOAD_SHA256="53ed7f294a8b8fb4d7d75988c69194943831c104d39832a1fa30307b1a8593de " \
51
51
&& mkdir -p /usr/src/rebar3-src \
52
52
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
53
53
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM buildpack-deps:buster
2
2
3
3
ENV OTP_VERSION="23.3.4.20" \
4
- REBAR3_VERSION="3.23.0"
4
+ REBAR3_VERSION="3.20.0" \
5
+ REBAR_VERSION="2.6.4"
5
6
6
7
LABEL org.opencontainers.image.version=$OTP_VERSION
7
8
@@ -40,8 +41,6 @@ CMD ["erl"]
40
41
41
42
# extra useful tools here: rebar & rebar3
42
43
43
- ENV REBAR_VERSION="2.6.4"
44
-
45
44
RUN set -xe \
46
45
&& REBAR_DOWNLOAD_URL="https://github.com/rebar/rebar/archive/${REBAR_VERSION}.tar.gz" \
47
46
&& REBAR_DOWNLOAD_SHA256="577246bafa2eb2b2c3f1d0c157408650446884555bf87901508ce71d5cc0bd07" \
@@ -57,7 +56,7 @@ RUN set -xe \
57
56
58
57
RUN set -xe \
59
58
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
60
- && REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516 " \
59
+ && REBAR3_DOWNLOAD_SHA256="53ed7f294a8b8fb4d7d75988c69194943831c104d39832a1fa30307b1a8593de " \
61
60
&& mkdir -p /usr/src/rebar3-src \
62
61
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
63
62
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.16
2
2
3
3
ENV OTP_VERSION="23.3.4.20" \
4
- REBAR3_VERSION="3.23 .0"
4
+ REBAR3_VERSION="3.20 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
8
8
RUN set -xe \
9
9
&& OTP_DOWNLOAD_URL="https://github.com/erlang/otp/archive/OTP-${OTP_VERSION}.tar.gz" \
10
10
&& OTP_DOWNLOAD_SHA256="887859a686f3278e2a60435713ade724f97e6222cb7693a5f37c6a894ac42f8e" \
11
- && REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516 " \
11
+ && REBAR3_DOWNLOAD_SHA256="53ed7f294a8b8fb4d7d75988c69194943831c104d39832a1fa30307b1a8593de " \
12
12
&& apk add --no-cache --virtual .fetch-deps \
13
13
curl \
14
14
ca-certificates \
Original file line number Diff line number Diff line change 1
1
FROM debian:buster
2
2
3
3
ENV OTP_VERSION="23.3.4.20" \
4
- REBAR3_VERSION="3.23 .0"
4
+ REBAR3_VERSION="3.20 .0"
5
5
6
6
LABEL org.opencontainers.image.version=$OTP_VERSION
7
7
@@ -47,7 +47,7 @@ RUN set -xe \
47
47
&& make install ) \
48
48
&& find /usr/local -name examples | xargs rm -rf \
49
49
&& REBAR3_DOWNLOAD_URL="https://github.com/erlang/rebar3/archive/${REBAR3_VERSION}.tar.gz" \
50
- && REBAR3_DOWNLOAD_SHA256="00646b692762ffd340560e8f16486dbda840e1546749ee5a7f58feeb77e7b516 " \
50
+ && REBAR3_DOWNLOAD_SHA256="53ed7f294a8b8fb4d7d75988c69194943831c104d39832a1fa30307b1a8593de " \
51
51
&& mkdir -p /usr/src/rebar3-src \
52
52
&& curl -fSL -o rebar3-src.tar.gz "$REBAR3_DOWNLOAD_URL" \
53
53
&& echo "$REBAR3_DOWNLOAD_SHA256 rebar3-src.tar.gz" | sha256sum -c - \
You can’t perform that action at this time.
0 commit comments