Update to 1.6.5
This commit is contained in:
parent
6e5e2027ca
commit
52273f729e
|
|
@ -14,19 +14,19 @@ ENV PATH $JULIA_PATH/bin:$PATH
|
||||||
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
||||||
|
|
||||||
# https://julialang.org/downloads/
|
# https://julialang.org/downloads/
|
||||||
ENV JULIA_VERSION 1.6.4
|
ENV JULIA_VERSION 1.6.5
|
||||||
|
|
||||||
RUN set -eux; \
|
RUN set -eux; \
|
||||||
\
|
\
|
||||||
apk add --no-cache --virtual .fetch-deps gnupg; \
|
apk add --no-cache --virtual .fetch-deps gnupg; \
|
||||||
\
|
\
|
||||||
# https://julialang.org/downloads/#julia-command-line-version
|
# https://julialang.org/downloads/#julia-command-line-version
|
||||||
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.4.sha256
|
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.5.sha256
|
||||||
arch="$(apk --print-arch)"; \
|
arch="$(apk --print-arch)"; \
|
||||||
case "$arch" in \
|
case "$arch" in \
|
||||||
'x86_64') \
|
'x86_64') \
|
||||||
url='https://julialang-s3.julialang.org/bin/musl/x64/1.6/julia-1.6.4-musl-x86_64.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/musl/x64/1.6/julia-1.6.5-musl-x86_64.tar.gz'; \
|
||||||
sha256='63f121dffa982ff9b53c7c8a334830e17e2c9d2efa79316a548d29f7f8925e66'; \
|
sha256='e38eece6f9f20c7472caf3f8f74a99ad0880921c28e1301461fa7af919880383'; \
|
||||||
;; \
|
;; \
|
||||||
*) \
|
*) \
|
||||||
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
||||||
|
|
|
||||||
|
|
@ -14,19 +14,19 @@ ENV PATH $JULIA_PATH/bin:$PATH
|
||||||
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
||||||
|
|
||||||
# https://julialang.org/downloads/
|
# https://julialang.org/downloads/
|
||||||
ENV JULIA_VERSION 1.6.4
|
ENV JULIA_VERSION 1.6.5
|
||||||
|
|
||||||
RUN set -eux; \
|
RUN set -eux; \
|
||||||
\
|
\
|
||||||
apk add --no-cache --virtual .fetch-deps gnupg; \
|
apk add --no-cache --virtual .fetch-deps gnupg; \
|
||||||
\
|
\
|
||||||
# https://julialang.org/downloads/#julia-command-line-version
|
# https://julialang.org/downloads/#julia-command-line-version
|
||||||
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.4.sha256
|
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.5.sha256
|
||||||
arch="$(apk --print-arch)"; \
|
arch="$(apk --print-arch)"; \
|
||||||
case "$arch" in \
|
case "$arch" in \
|
||||||
'x86_64') \
|
'x86_64') \
|
||||||
url='https://julialang-s3.julialang.org/bin/musl/x64/1.6/julia-1.6.4-musl-x86_64.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/musl/x64/1.6/julia-1.6.5-musl-x86_64.tar.gz'; \
|
||||||
sha256='63f121dffa982ff9b53c7c8a334830e17e2c9d2efa79316a548d29f7f8925e66'; \
|
sha256='e38eece6f9f20c7472caf3f8f74a99ad0880921c28e1301461fa7af919880383'; \
|
||||||
;; \
|
;; \
|
||||||
*) \
|
*) \
|
||||||
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ ENV PATH $JULIA_PATH/bin:$PATH
|
||||||
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
||||||
|
|
||||||
# https://julialang.org/downloads/
|
# https://julialang.org/downloads/
|
||||||
ENV JULIA_VERSION 1.6.4
|
ENV JULIA_VERSION 1.6.5
|
||||||
|
|
||||||
RUN set -eux; \
|
RUN set -eux; \
|
||||||
\
|
\
|
||||||
|
|
@ -38,24 +38,24 @@ RUN set -eux; \
|
||||||
fi; \
|
fi; \
|
||||||
\
|
\
|
||||||
# https://julialang.org/downloads/#julia-command-line-version
|
# https://julialang.org/downloads/#julia-command-line-version
|
||||||
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.4.sha256
|
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.5.sha256
|
||||||
arch="$(dpkg --print-architecture)"; \
|
arch="$(dpkg --print-architecture)"; \
|
||||||
case "$arch" in \
|
case "$arch" in \
|
||||||
'amd64') \
|
'amd64') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/x64/1.6/julia-1.6.4-linux-x86_64.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/x64/1.6/julia-1.6.5-linux-x86_64.tar.gz'; \
|
||||||
sha256='52244ae47697e8073dfbc9d1251b0422f0dbd1fbe1a41da4b9f7ddf0506b2132'; \
|
sha256='b8fe23ee547254a2fe14be587284ed77c78c06c2d8e9aad5febce0d21cab8e2c'; \
|
||||||
;; \
|
;; \
|
||||||
'armhf') \
|
'armhf') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/armv7l/1.6/julia-1.6.4-linux-armv7l.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/armv7l/1.6/julia-1.6.5-linux-armv7l.tar.gz'; \
|
||||||
sha256='9ad3f6bd71eb6840d4cef1569855da20c0b4931a2bdf77703a64df672b0702a1'; \
|
sha256='19de0651152aff20feb757f6aa3316d29514e870c3d05ea347c53ba5a44048f0'; \
|
||||||
;; \
|
;; \
|
||||||
'arm64') \
|
'arm64') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/aarch64/1.6/julia-1.6.4-linux-aarch64.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/aarch64/1.6/julia-1.6.5-linux-aarch64.tar.gz'; \
|
||||||
sha256='072daac7229c15fa41d0c1b65b8a3d6ee747323d02f5943da3846b075291b48b'; \
|
sha256='5e24d1326ec8590ab382b6836d00f37193ed5198bc115e9c8032cfb71fcf07ba'; \
|
||||||
;; \
|
;; \
|
||||||
'i386') \
|
'i386') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/x86/1.6/julia-1.6.4-linux-i686.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/x86/1.6/julia-1.6.5-linux-i686.tar.gz'; \
|
||||||
sha256='9d43d642174cf22cf0fde18dc2578c84f357d2c619b9d846d3a6da4192ba48cf'; \
|
sha256='909c275912a9ae4198710e993b388dd1089b8d6279bab74cfab59af2f4d8f38a'; \
|
||||||
;; \
|
;; \
|
||||||
*) \
|
*) \
|
||||||
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ ENV PATH $JULIA_PATH/bin:$PATH
|
||||||
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
|
||||||
|
|
||||||
# https://julialang.org/downloads/
|
# https://julialang.org/downloads/
|
||||||
ENV JULIA_VERSION 1.6.4
|
ENV JULIA_VERSION 1.6.5
|
||||||
|
|
||||||
RUN set -eux; \
|
RUN set -eux; \
|
||||||
\
|
\
|
||||||
|
|
@ -38,24 +38,24 @@ RUN set -eux; \
|
||||||
fi; \
|
fi; \
|
||||||
\
|
\
|
||||||
# https://julialang.org/downloads/#julia-command-line-version
|
# https://julialang.org/downloads/#julia-command-line-version
|
||||||
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.4.sha256
|
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.5.sha256
|
||||||
arch="$(dpkg --print-architecture)"; \
|
arch="$(dpkg --print-architecture)"; \
|
||||||
case "$arch" in \
|
case "$arch" in \
|
||||||
'amd64') \
|
'amd64') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/x64/1.6/julia-1.6.4-linux-x86_64.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/x64/1.6/julia-1.6.5-linux-x86_64.tar.gz'; \
|
||||||
sha256='52244ae47697e8073dfbc9d1251b0422f0dbd1fbe1a41da4b9f7ddf0506b2132'; \
|
sha256='b8fe23ee547254a2fe14be587284ed77c78c06c2d8e9aad5febce0d21cab8e2c'; \
|
||||||
;; \
|
;; \
|
||||||
'armhf') \
|
'armhf') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/armv7l/1.6/julia-1.6.4-linux-armv7l.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/armv7l/1.6/julia-1.6.5-linux-armv7l.tar.gz'; \
|
||||||
sha256='9ad3f6bd71eb6840d4cef1569855da20c0b4931a2bdf77703a64df672b0702a1'; \
|
sha256='19de0651152aff20feb757f6aa3316d29514e870c3d05ea347c53ba5a44048f0'; \
|
||||||
;; \
|
;; \
|
||||||
'arm64') \
|
'arm64') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/aarch64/1.6/julia-1.6.4-linux-aarch64.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/aarch64/1.6/julia-1.6.5-linux-aarch64.tar.gz'; \
|
||||||
sha256='072daac7229c15fa41d0c1b65b8a3d6ee747323d02f5943da3846b075291b48b'; \
|
sha256='5e24d1326ec8590ab382b6836d00f37193ed5198bc115e9c8032cfb71fcf07ba'; \
|
||||||
;; \
|
;; \
|
||||||
'i386') \
|
'i386') \
|
||||||
url='https://julialang-s3.julialang.org/bin/linux/x86/1.6/julia-1.6.4-linux-i686.tar.gz'; \
|
url='https://julialang-s3.julialang.org/bin/linux/x86/1.6/julia-1.6.5-linux-i686.tar.gz'; \
|
||||||
sha256='9d43d642174cf22cf0fde18dc2578c84f357d2c619b9d846d3a6da4192ba48cf'; \
|
sha256='909c275912a9ae4198710e993b388dd1089b8d6279bab74cfab59af2f4d8f38a'; \
|
||||||
;; \
|
;; \
|
||||||
*) \
|
*) \
|
||||||
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
echo >&2 "error: current architecture ($arch) does not have a corresponding Julia binary release"; \
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@ FROM mcr.microsoft.com/windows/servercore:1809
|
||||||
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
|
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
|
||||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||||
|
|
||||||
ENV JULIA_VERSION 1.6.4
|
ENV JULIA_VERSION 1.6.5
|
||||||
ENV JULIA_URL https://julialang-s3.julialang.org/bin/winnt/x64/1.6/julia-1.6.4-win64.exe
|
ENV JULIA_URL https://julialang-s3.julialang.org/bin/winnt/x64/1.6/julia-1.6.5-win64.exe
|
||||||
ENV JULIA_SHA256 c9b6ecdad4feb57e5af12c9ef1a74993a96edbf87a4dc521d57e338397cee9b2
|
ENV JULIA_SHA256 dd2e0404c6ad332b47cfea13796b7826b5d0df0aae6450b976bab8f848bdf948
|
||||||
|
|
||||||
RUN Write-Host ('Downloading {0} ...' -f $env:JULIA_URL); \
|
RUN Write-Host ('Downloading {0} ...' -f $env:JULIA_URL); \
|
||||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2016
|
||||||
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
|
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
|
||||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||||
|
|
||||||
ENV JULIA_VERSION 1.6.4
|
ENV JULIA_VERSION 1.6.5
|
||||||
ENV JULIA_URL https://julialang-s3.julialang.org/bin/winnt/x64/1.6/julia-1.6.4-win64.exe
|
ENV JULIA_URL https://julialang-s3.julialang.org/bin/winnt/x64/1.6/julia-1.6.5-win64.exe
|
||||||
ENV JULIA_SHA256 c9b6ecdad4feb57e5af12c9ef1a74993a96edbf87a4dc521d57e338397cee9b2
|
ENV JULIA_SHA256 dd2e0404c6ad332b47cfea13796b7826b5d0df0aae6450b976bab8f848bdf948
|
||||||
|
|
||||||
RUN Write-Host ('Downloading {0} ...' -f $env:JULIA_URL); \
|
RUN Write-Host ('Downloading {0} ...' -f $env:JULIA_URL); \
|
||||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,9 @@ FROM mcr.microsoft.com/windows/servercore:ltsc2022
|
||||||
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
|
# $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324
|
||||||
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
||||||
|
|
||||||
ENV JULIA_VERSION 1.6.4
|
ENV JULIA_VERSION 1.6.5
|
||||||
ENV JULIA_URL https://julialang-s3.julialang.org/bin/winnt/x64/1.6/julia-1.6.4-win64.exe
|
ENV JULIA_URL https://julialang-s3.julialang.org/bin/winnt/x64/1.6/julia-1.6.5-win64.exe
|
||||||
ENV JULIA_SHA256 c9b6ecdad4feb57e5af12c9ef1a74993a96edbf87a4dc521d57e338397cee9b2
|
ENV JULIA_SHA256 dd2e0404c6ad332b47cfea13796b7826b5d0df0aae6450b976bab8f848bdf948
|
||||||
|
|
||||||
RUN Write-Host ('Downloading {0} ...' -f $env:JULIA_URL); \
|
RUN Write-Host ('Downloading {0} ...' -f $env:JULIA_URL); \
|
||||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue