File tree 7 files changed +16
-16
lines changed
7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ language: bash
2
2
services : docker
3
3
4
4
env :
5
- - VERSION=1.23 .0 VARIANT=stretch
6
- - VERSION=1.23 .0 VARIANT=jessie
5
+ - VERSION=1.24 .0 VARIANT=stretch
6
+ - VERSION=1.24 .0 VARIANT=jessie
7
7
8
8
install :
9
9
- git clone https://github.com/docker-library/official-images.git ~/official-images
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,18 +9,18 @@ RUN set -eux; \
9
9
# this "case" statement is generated via "update.sh"
10
10
dpkgArch="$(dpkg --print-architecture)" ; \
11
11
case "${dpkgArch##*-}" in \
12
- amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='4b7a67cd971d713e0caef48b5754190aca19192d1863927a005c3432512b12dc ' ;; \
13
- armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='622190c3f478a56563d45f6fbc1fab02d356b631c28a1beba2c3e4c68de3c14c ' ;; \
14
- arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='a39d7643cdced9ad70a9927bbb0a861b579884f94793881b771d3a0f92c0ddd8 ' ;; \
15
- i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='9e921fce4a2cc1f04095be6d623effdead0aab1261472e6933da9e6030330b90 ' ;; \
12
+ amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='c9837990bce0faab4f6f52604311a19bb8d2cde989bea6a7b605c8e526db6f02 ' ;; \
13
+ armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='297661e121048db3906f8c964999f765b4f6848632c0c2cfb6a1e93d99440732 ' ;; \
14
+ arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='a68ac2d400409f485cb22756f0b3217b95449884e1ea6fd9b70522b3c0a929b2 ' ;; \
15
+ i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='27e6109c7b537b92a6c2d45ac941d959606ca26ec501d86085d651892a55d849 ' ;; \
16
16
*) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
17
17
esac; \
18
18
\
19
- url="https://static.rust-lang.org/rustup/archive/1.9 .0/${rustArch}/rustup-init" ; \
19
+ url="https://static.rust-lang.org/rustup/archive/1.11 .0/${rustArch}/rustup-init" ; \
20
20
wget "$url" ; \
21
21
echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
22
22
chmod +x rustup-init; \
23
- ./rustup-init -y --no-modify-path --default-toolchain 1.23 .0; \
23
+ ./rustup-init -y --no-modify-path --default-toolchain 1.24 .0; \
24
24
rm rustup-init; \
25
25
chmod -R a+w $RUSTUP_HOME $CARGO_HOME; \
26
26
rustup --version; \
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ 1.11.0
Original file line number Diff line number Diff line change @@ -9,18 +9,18 @@ RUN set -eux; \
9
9
# this "case" statement is generated via "update.sh"
10
10
dpkgArch="$(dpkg --print-architecture)" ; \
11
11
case "${dpkgArch##*-}" in \
12
- amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='4b7a67cd971d713e0caef48b5754190aca19192d1863927a005c3432512b12dc ' ;; \
13
- armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='622190c3f478a56563d45f6fbc1fab02d356b631c28a1beba2c3e4c68de3c14c ' ;; \
14
- arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='a39d7643cdced9ad70a9927bbb0a861b579884f94793881b771d3a0f92c0ddd8 ' ;; \
15
- i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='9e921fce4a2cc1f04095be6d623effdead0aab1261472e6933da9e6030330b90 ' ;; \
12
+ amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='c9837990bce0faab4f6f52604311a19bb8d2cde989bea6a7b605c8e526db6f02 ' ;; \
13
+ armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='297661e121048db3906f8c964999f765b4f6848632c0c2cfb6a1e93d99440732 ' ;; \
14
+ arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='a68ac2d400409f485cb22756f0b3217b95449884e1ea6fd9b70522b3c0a929b2 ' ;; \
15
+ i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='27e6109c7b537b92a6c2d45ac941d959606ca26ec501d86085d651892a55d849 ' ;; \
16
16
*) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
17
17
esac; \
18
18
\
19
- url="https://static.rust-lang.org/rustup/archive/1.9 .0/${rustArch}/rustup-init" ; \
19
+ url="https://static.rust-lang.org/rustup/archive/1.11 .0/${rustArch}/rustup-init" ; \
20
20
wget "$url" ; \
21
21
echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
22
22
chmod +x rustup-init; \
23
- ./rustup-init -y --no-modify-path --default-toolchain 1.23 .0; \
23
+ ./rustup-init -y --no-modify-path --default-toolchain 1.24 .0; \
24
24
rm rustup-init; \
25
25
chmod -R a+w $RUSTUP_HOME $CARGO_HOME; \
26
26
rustup --version; \
Original file line number Diff line number Diff line change 2
2
set -Eeuo pipefail
3
3
4
4
declare -A aliases=(
5
- [1.23 .0]=' 1 1.23 latest'
5
+ [1.24 .0]=' 1 1.24 latest'
6
6
)
7
7
8
8
defaultDebianSuite=' stretch'
You can’t perform that action at this time.
0 commit comments