File tree Expand file tree Collapse file tree 3 files changed +9
-11
lines changed
windowsservercore-ltsc2016 Expand file tree Collapse file tree 3 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ ENV PATH $JULIA_PATH/bin:$PATH
17
17
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
18
18
19
19
# https://julialang.org/downloads/
20
- ENV JULIA_VERSION 1.4.1
20
+ ENV JULIA_VERSION 1.4.2
21
21
22
22
RUN set -eux; \
23
23
\
@@ -32,18 +32,16 @@ RUN set -eux; \
32
32
fi; \
33
33
\
34
34
# 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
36
36
# this "case" statement is generated via "update.sh"
37
37
dpkgArch="$(dpkg --print-architecture)" ; \
38
38
case "${dpkgArch##*-}" in \
39
39
# 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' ;; \
43
41
# arm64v8
44
- arm64) tarArch='aarch64' ; dirArch='aarch64' ; sha256='788dc1e79344b52f65358ce4406dc5304bafd82c6af50bfa92a6ee5ea998e678 ' ;; \
42
+ arm64) tarArch='aarch64' ; dirArch='aarch64' ; sha256='f124d1b9fa68c3049d4ffe2349454f8ba1753d17d6578bc6e7cb916aed7cff4a ' ;; \
45
43
# i386
46
- i386) tarArch='i686' ; dirArch='x86' ; sha256='765e614b2754b20d50bae475dd9f3b794f445915084afa42523fd1b14e4c91fe ' ;; \
44
+ i386) tarArch='i686' ; dirArch='x86' ; sha256='ce821b6671a137dc7c2ccbf40ff08471a6791ea8af80a30d6716806608e72dab ' ;; \
47
45
*) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding Julia binary release" ; exit 1 ;; \
48
46
esac; \
49
47
\
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ FROM mcr.microsoft.com/windows/servercore:1809
3
3
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
4
4
SHELL ["powershell" , "-Command" , "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';" ]
5
5
6
- ENV JULIA_VERSION 1.4.1
7
- ENV JULIA_SHA256 953090cf2a3690791df7550175a8969e8de15cbd84d815975b6495cc884deab6
6
+ ENV JULIA_VERSION 1.4.2
7
+ ENV JULIA_SHA256 9775aa53f711167522ff4681f055d2ed8dc8682c99c28eb88c324ac766d0aebd
8
8
9
9
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 '.' )); \
10
10
Write-Host ('Downloading {0} ...' -f $url); \
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2016
3
3
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
4
4
SHELL ["powershell" , "-Command" , "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';" ]
5
5
6
- ENV JULIA_VERSION 1.4.1
7
- ENV JULIA_SHA256 953090cf2a3690791df7550175a8969e8de15cbd84d815975b6495cc884deab6
6
+ ENV JULIA_VERSION 1.4.2
7
+ ENV JULIA_SHA256 9775aa53f711167522ff4681f055d2ed8dc8682c99c28eb88c324ac766d0aebd
8
8
9
9
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 '.' )); \
10
10
Write-Host ('Downloading {0} ...' -f $url); \
You can’t perform that action at this time.
0 commit comments