File tree Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Expand file tree Collapse file tree 7 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ language: bash
22services : docker
33
44env :
5- - VERSION=1.33 .0 VARIANT=stretch/slim
6- - VERSION=1.33 .0 VARIANT=stretch
5+ - VERSION=1.34 .0 VARIANT=stretch/slim
6+ - VERSION=1.34 .0 VARIANT=stretch
77
88install :
99 - git clone https://github.com/docker-library/official-images.git ~/official-images
Load Diff This file was deleted.
File renamed without changes.
Original file line number Diff line number Diff line change 1+ 1.17.0
Original file line number Diff line number Diff line change @@ -3,18 +3,18 @@ FROM buildpack-deps:stretch
33ENV RUSTUP_HOME=/usr/local/rustup \
44 CARGO_HOME=/usr/local/cargo \
55 PATH=/usr/local/cargo/bin:$PATH \
6- RUST_VERSION=1.33 .0
6+ RUST_VERSION=1.34 .0
77
88RUN set -eux; \
99 dpkgArch="$(dpkg --print-architecture)" ; \
1010 case "${dpkgArch##*-}" in \
11- amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='2d4ddf4e53915a23dda722608ed24e5c3f29ea1688da55aa4e98765fc6223f71 ' ;; \
12- armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='be85f50dc70ee239c5bb6acb60080797841a1e7c45fbf6bae15d6bd4b37ce0e5 ' ;; \
13- arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='454f00a86be75ab070149bac1f541a7b39e5d3383d6da96ad2b929867ed40167 ' ;; \
14- i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='179e3b39f11037a708874e750081f7c0d3e1a6a4c431c2ecee2295acc7b696af ' ;; \
11+ amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='ce09d3de51432b34a8ff73c7aaa1edb64871b2541d2eb474441cedb8bf14c5fa ' ;; \
12+ armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='bf140b03a49abb87a601ad29ca326b4e6721be39868c90ad17cd0b76014f1789 ' ;; \
13+ arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='76010a472d90714f781d5a4ce618f0e1f8ce3a8b8476ce35a34b2f6ab67a8026 ' ;; \
14+ i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='bde10f3e1a267923224792bb26b605b1189733c9d0c806da955e5c5c45b2868c ' ;; \
1515 *) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
1616 esac; \
17- url="https://static.rust-lang.org/rustup/archive/1.16 .0/${rustArch}/rustup-init" ; \
17+ url="https://static.rust-lang.org/rustup/archive/1.17 .0/${rustArch}/rustup-init" ; \
1818 wget "$url" ; \
1919 echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
2020 chmod +x rustup-init; \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM debian:stretch-slim
33ENV RUSTUP_HOME=/usr/local/rustup \
44 CARGO_HOME=/usr/local/cargo \
55 PATH=/usr/local/cargo/bin:$PATH \
6- RUST_VERSION=1.33 .0
6+ RUST_VERSION=1.34 .0
77
88RUN set -eux; \
99 apt-get update; \
@@ -15,13 +15,13 @@ RUN set -eux; \
1515 ; \
1616 dpkgArch="$(dpkg --print-architecture)" ; \
1717 case "${dpkgArch##*-}" in \
18- amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='2d4ddf4e53915a23dda722608ed24e5c3f29ea1688da55aa4e98765fc6223f71 ' ;; \
19- armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='be85f50dc70ee239c5bb6acb60080797841a1e7c45fbf6bae15d6bd4b37ce0e5 ' ;; \
20- arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='454f00a86be75ab070149bac1f541a7b39e5d3383d6da96ad2b929867ed40167 ' ;; \
21- i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='179e3b39f11037a708874e750081f7c0d3e1a6a4c431c2ecee2295acc7b696af ' ;; \
18+ amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='ce09d3de51432b34a8ff73c7aaa1edb64871b2541d2eb474441cedb8bf14c5fa ' ;; \
19+ armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='bf140b03a49abb87a601ad29ca326b4e6721be39868c90ad17cd0b76014f1789 ' ;; \
20+ arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='76010a472d90714f781d5a4ce618f0e1f8ce3a8b8476ce35a34b2f6ab67a8026 ' ;; \
21+ i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='bde10f3e1a267923224792bb26b605b1189733c9d0c806da955e5c5c45b2868c ' ;; \
2222 *) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
2323 esac; \
24- url="https://static.rust-lang.org/rustup/archive/1.16 .0/${rustArch}/rustup-init" ; \
24+ url="https://static.rust-lang.org/rustup/archive/1.17 .0/${rustArch}/rustup-init" ; \
2525 wget "$url" ; \
2626 echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
2727 chmod +x rustup-init; \
Original file line number Diff line number Diff line change 22set -Eeuo pipefail
33
44declare -A aliases=(
5- [1.33 .0]=' 1 1.33 latest'
5+ [1.34 .0]=' 1 1.34 latest'
66)
77
88defaultDebianSuite=' stretch'
You can’t perform that action at this time.
0 commit comments