Update to 1.6.2
This commit is contained in:
parent
796a90edeb
commit
16b07a748f
|
|
@ -8,19 +8,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.1
|
ENV JULIA_VERSION 1.6.2
|
||||||
|
|
||||||
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.1.sha256
|
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.2.sha256
|
||||||
# this "case" statement is generated via "update.sh"
|
# this "case" statement is generated via "update.sh"
|
||||||
apkArch="$(apk --print-arch)"; \
|
apkArch="$(apk --print-arch)"; \
|
||||||
case "$apkArch" in \
|
case "$apkArch" in \
|
||||||
# amd64
|
# amd64
|
||||||
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='492514c93c97e7012b8124a959a9f5569231e52b14f992e74a977fffd7b8961b' ;; \
|
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='5ff279bc733a99a9582fd9b39eb3d18a3fa77b9d3d2733039279a250c8c5d49c' ;; \
|
||||||
*) echo >&2 "error: current architecture ($apkArch) does not have a corresponding Julia binary release"; exit 1 ;; \
|
*) echo >&2 "error: current architecture ($apkArch) does not have a corresponding Julia binary release"; exit 1 ;; \
|
||||||
esac; \
|
esac; \
|
||||||
\
|
\
|
||||||
|
|
|
||||||
|
|
@ -8,19 +8,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.1
|
ENV JULIA_VERSION 1.6.2
|
||||||
|
|
||||||
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.1.sha256
|
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.2.sha256
|
||||||
# this "case" statement is generated via "update.sh"
|
# this "case" statement is generated via "update.sh"
|
||||||
apkArch="$(apk --print-arch)"; \
|
apkArch="$(apk --print-arch)"; \
|
||||||
case "$apkArch" in \
|
case "$apkArch" in \
|
||||||
# amd64
|
# amd64
|
||||||
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='492514c93c97e7012b8124a959a9f5569231e52b14f992e74a977fffd7b8961b' ;; \
|
x86_64) tarArch='x86_64'; dirArch='x64'; sha256='5ff279bc733a99a9582fd9b39eb3d18a3fa77b9d3d2733039279a250c8c5d49c' ;; \
|
||||||
*) echo >&2 "error: current architecture ($apkArch) does not have a corresponding Julia binary release"; exit 1 ;; \
|
*) echo >&2 "error: current architecture ($apkArch) does not have a corresponding Julia binary release"; exit 1 ;; \
|
||||||
esac; \
|
esac; \
|
||||||
\
|
\
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,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.1
|
ENV JULIA_VERSION 1.6.2
|
||||||
|
|
||||||
RUN set -eux; \
|
RUN set -eux; \
|
||||||
\
|
\
|
||||||
|
|
@ -32,20 +32,20 @@ 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.1.sha256
|
# https://julialang-s3.julialang.org/bin/checksums/julia-1.6.2.sha256
|
||||||
# this "case" statement is generated via "update.sh"
|
# this "case" statement is generated via "update.sh"
|
||||||
dpkgArch="$(dpkg --print-architecture)"; \
|
dpkgArch="$(dpkg --print-architecture)"; \
|
||||||
case "${dpkgArch##*-}" in \
|
case "${dpkgArch##*-}" in \
|
||||||
# amd64
|
# amd64
|
||||||
amd64) tarArch='x86_64'; dirArch='x64'; sha256='7c888adec3ea42afbfed2ce756ce1164a570d50fa7506c3f2e1e2cbc49d52506' ;; \
|
amd64) tarArch='x86_64'; dirArch='x64'; sha256='3eb4b5775b0df1ad38f6c409e989501ab445c95bcb01ab02bd60f5bd1e823240' ;; \
|
||||||
# arm32v7
|
# arm32v7
|
||||||
armhf) tarArch='armv7l'; dirArch='armv7l'; sha256='4fcdbd35334788ad6c2a5e79270a126496a01e1834de1e6895441a0aec8c8a55' ;; \
|
armhf) tarArch='armv7l'; dirArch='armv7l'; sha256='76229a04fc259c3d70a7bbf28f80c248f9891bd85d154df7cc67bcbdc3350c4f' ;; \
|
||||||
# arm64v8
|
# arm64v8
|
||||||
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='e6c6a0eba5546b6f8b9cdd4d303517f94e0892056c20d89faf86ee1678aab917' ;; \
|
arm64) tarArch='aarch64'; dirArch='aarch64'; sha256='fe487892b2e960698de467741330e0754b8ff80bb63b66c31451685be3f348cd' ;; \
|
||||||
# i386
|
# i386
|
||||||
i386) tarArch='i686'; dirArch='x86'; sha256='b65f3e4288279d214f5a1fb98aafc16fd6dfae7225833b5fb34cfbb5e1651b15' ;; \
|
i386) tarArch='i686'; dirArch='x86'; sha256='360f6ca9bb39eafda135ae0c943f9c336af843445e14aa5d60581433362ea286' ;; \
|
||||||
# ppc64le
|
# ppc64le
|
||||||
ppc64el) tarArch='ppc64le'; dirArch='ppc64le'; sha256='c5732c8777e302f01751314314006fba4e80eb3118cba15ef2858ede1f6d23e2' ;; \
|
ppc64el) tarArch='ppc64le'; dirArch='ppc64le'; sha256='84c1c0aa3bbc229192e17d16d5da9d6bb0daa791a78dd40480b09528fb50648a' ;; \
|
||||||
*) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding Julia binary release"; exit 1 ;; \
|
*) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding Julia binary release"; exit 1 ;; \
|
||||||
esac; \
|
esac; \
|
||||||
\
|
\
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ 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.1
|
ENV JULIA_VERSION 1.6.2
|
||||||
ENV JULIA_SHA256 953a7715cd0a0eed1fdaee1f2c2886b9581da89f56675b79cf095672fcdc8d6b
|
ENV JULIA_SHA256 380115d80e2f0bebe1885b80f67cf9330b659722f50608495962ab3a00e02977
|
||||||
|
|
||||||
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 '.')); \
|
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 '.')); \
|
||||||
Write-Host ('Downloading {0} ...' -f $url); \
|
Write-Host ('Downloading {0} ...' -f $url); \
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ 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.1
|
ENV JULIA_VERSION 1.6.2
|
||||||
ENV JULIA_SHA256 953a7715cd0a0eed1fdaee1f2c2886b9581da89f56675b79cf095672fcdc8d6b
|
ENV JULIA_SHA256 380115d80e2f0bebe1885b80f67cf9330b659722f50608495962ab3a00e02977
|
||||||
|
|
||||||
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 '.')); \
|
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 '.')); \
|
||||||
Write-Host ('Downloading {0} ...' -f $url); \
|
Write-Host ('Downloading {0} ...' -f $url); \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue