Skip to content

Commit fd71528

Browse files
Update to 1.5.4
1 parent 88e200c commit fd71528

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

1.5/alpine3.12/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ ENV PATH $JULIA_PATH/bin:$PATH
88
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
99

1010
# https://julialang.org/downloads/
11-
ENV JULIA_VERSION 1.5.3
11+
ENV JULIA_VERSION 1.5.4
1212

1313
RUN set -eux; \
1414
\
1515
apk add --no-cache --virtual .fetch-deps gnupg; \
1616
\
1717
# https://julialang.org/downloads/#julia-command-line-version
18-
# https://julialang-s3.julialang.org/bin/checksums/julia-1.5.3.sha256
18+
# https://julialang-s3.julialang.org/bin/checksums/julia-1.5.4.sha256
1919
# this "case" statement is generated via "update.sh"
2020
apkArch="$(apk --print-arch)"; \
2121
case "$apkArch" in \
2222
# amd64
23-
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='2faf4ebe3b5fa1bbee853655ef7c292b457e80d3fca1af1c8d3f179286b27da6' ;; \
23+
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='7bc70fde541e8f146adfbe1d083c2efbbae2690c1634b2c1947c41cd4b9b2fa3' ;; \
2424
*) echo >&2 "error: current architecture ($apkArch) does not have a corresponding Julia binary release"; exit 1 ;; \
2525
esac; \
2626
\

1.5/alpine3.13/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ ENV PATH $JULIA_PATH/bin:$PATH
88
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
99

1010
# https://julialang.org/downloads/
11-
ENV JULIA_VERSION 1.5.3
11+
ENV JULIA_VERSION 1.5.4
1212

1313
RUN set -eux; \
1414
\
1515
apk add --no-cache --virtual .fetch-deps gnupg; \
1616
\
1717
# https://julialang.org/downloads/#julia-command-line-version
18-
# https://julialang-s3.julialang.org/bin/checksums/julia-1.5.3.sha256
18+
# https://julialang-s3.julialang.org/bin/checksums/julia-1.5.4.sha256
1919
# this "case" statement is generated via "update.sh"
2020
apkArch="$(apk --print-arch)"; \
2121
case "$apkArch" in \
2222
# amd64
23-
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='2faf4ebe3b5fa1bbee853655ef7c292b457e80d3fca1af1c8d3f179286b27da6' ;; \
23+
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='7bc70fde541e8f146adfbe1d083c2efbbae2690c1634b2c1947c41cd4b9b2fa3' ;; \
2424
*) echo >&2 "error: current architecture ($apkArch) does not have a corresponding Julia binary release"; exit 1 ;; \
2525
esac; \
2626
\

1.5/buster/Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ENV PATH $JULIA_PATH/bin:$PATH
1717
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
1818

1919
# https://julialang.org/downloads/
20-
ENV JULIA_VERSION 1.5.3
20+
ENV JULIA_VERSION 1.5.4
2121

2222
RUN set -eux; \
2323
\
@@ -32,16 +32,18 @@ RUN set -eux; \
3232
fi; \
3333
\
3434
# https://julialang.org/downloads/#julia-command-line-version
35-
# https://julialang-s3.julialang.org/bin/checksums/julia-1.5.3.sha256
35+
# https://julialang-s3.julialang.org/bin/checksums/julia-1.5.4.sha256
3636
# this "case" statement is generated via "update.sh"
3737
dpkgArch="$(dpkg --print-architecture)"; \
3838
case "${dpkgArch##*-}" in \
3939
# amd64
40-
amd64) tarArch='x86_64'; dirArch='x64'; sha256='f190c938dd6fed97021953240523c9db448ec0a6760b574afd4e9924ab5615f1' ;; \
40+
amd64) tarArch='x86_64'; dirArch='x64'; sha256='80dec351d1a593e8ad152636971a48d0c81bfcfab92c87f3604663616f1e8bc5' ;; \
4141
# arm64v8
42-
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='1e8445eae896d347200b819b7a41778597ae15c314d9df080172eb868a42b628' ;; \
42+
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='7ffdf6358d6c2b8a53757e517998d55833c363d4730c9452ddd44b223f10333a' ;; \
4343
# i386
44-
i386) tarArch='i686'; dirArch='x86'; sha256='b265144f136dcaf2336b5abc8d18ae405ad5834de058a0338a4d020bede2fe47' ;; \
44+
i386) tarArch='i686'; dirArch='x86'; sha256='70f7327a26dd2dda87eb6cdf99269f974ae722a02c54b2faa174ceda125bf006' ;; \
45+
# ppc64le
46+
ppc64el) tarArch='ppc64le'; dirArch='ppc64le'; sha256='4a0ae1b0c3bec1836067ce17b2eab2106f881f18a60f833f6272092f96e86fe7' ;; \
4547
*) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding Julia binary release"; exit 1 ;; \
4648
esac; \
4749
\

1.5/windows/windowsservercore-1809/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM mcr.microsoft.com/windows/servercore:1809
33
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
44
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
55

6-
ENV JULIA_VERSION 1.5.3
7-
ENV JULIA_SHA256 5c5c5f8794747072296d33d6547977a61126c6283b449814fb6e8005fb282a59
6+
ENV JULIA_VERSION 1.5.4
7+
ENV JULIA_SHA256 5942d2cd2535daf6f49979e9dda4968a8ca35fdbfaa7923e8c8929ed785aa0a3
88

99
RUN $url = ('https://julialang-s3.julialang.org/bin/winnt/x64/{1}/julia-{0}-win64.exe' -f $env:JULIA_VERSION, ($env:JULIA_VERSION.Split('.')[0..1] -Join '.')); \
1010
Write-Host ('Downloading {0} ...' -f $url); \

1.5/windows/windowsservercore-ltsc2016/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2016
33
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
44
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
55

6-
ENV JULIA_VERSION 1.5.3
7-
ENV JULIA_SHA256 5c5c5f8794747072296d33d6547977a61126c6283b449814fb6e8005fb282a59
6+
ENV JULIA_VERSION 1.5.4
7+
ENV JULIA_SHA256 5942d2cd2535daf6f49979e9dda4968a8ca35fdbfaa7923e8c8929ed785aa0a3
88

99
RUN $url = ('https://julialang-s3.julialang.org/bin/winnt/x64/{1}/julia-{0}-win64.exe' -f $env:JULIA_VERSION, ($env:JULIA_VERSION.Split('.')[0..1] -Join '.')); \
1010
Write-Host ('Downloading {0} ...' -f $url); \

0 commit comments

Comments
 (0)