Skip to content

Commit a427b70

Browse files
Update to 1.4.2
1 parent 0b06df9 commit a427b70

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

1.4/buster/Dockerfile

Lines changed: 5 additions & 7 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.4.1
20+
ENV JULIA_VERSION 1.4.2
2121

2222
RUN set -eux; \
2323
\
@@ -32,18 +32,16 @@ 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.4.1.sha256
35+
# https://julialang-s3.julialang.org/bin/checksums/julia-1.4.2.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='fd6d8cadaed678174c3caefb92207a3b0e8da9f926af6703fb4d1e4e4f50610a' ;; \
41-
# arm32v7
42-
armhf) tarArch='armv7l'; dirArch='armv7l'; sha256='bdcf24e0365f16092838daf7059bf5c0036bff9dc418511010e79249d9f71e96' ;; \
40+
amd64) tarArch='x86_64'; dirArch='x64'; sha256='d77311be23260710e89700d0b1113eecf421d6cf31a9cebad3f6bdd606165c28' ;; \
4341
# arm64v8
44-
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='788dc1e79344b52f65358ce4406dc5304bafd82c6af50bfa92a6ee5ea998e678' ;; \
42+
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='f124d1b9fa68c3049d4ffe2349454f8ba1753d17d6578bc6e7cb916aed7cff4a' ;; \
4543
# i386
46-
i386) tarArch='i686'; dirArch='x86'; sha256='765e614b2754b20d50bae475dd9f3b794f445915084afa42523fd1b14e4c91fe' ;; \
44+
i386) tarArch='i686'; dirArch='x86'; sha256='ce821b6671a137dc7c2ccbf40ff08471a6791ea8af80a30d6716806608e72dab' ;; \
4745
*) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding Julia binary release"; exit 1 ;; \
4846
esac; \
4947
\

1.4/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.4.1
7-
ENV JULIA_SHA256 953090cf2a3690791df7550175a8969e8de15cbd84d815975b6495cc884deab6
6+
ENV JULIA_VERSION 1.4.2
7+
ENV JULIA_SHA256 9775aa53f711167522ff4681f055d2ed8dc8682c99c28eb88c324ac766d0aebd
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.4/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.4.1
7-
ENV JULIA_SHA256 953090cf2a3690791df7550175a8969e8de15cbd84d815975b6495cc884deab6
6+
ENV JULIA_VERSION 1.4.2
7+
ENV JULIA_SHA256 9775aa53f711167522ff4681f055d2ed8dc8682c99c28eb88c324ac766d0aebd
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)