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.34.2 VARIANT=stretch/slim
6- - VERSION=1.34.2 VARIANT=stretch
5+ - VERSION=1.35.0 VARIANT=stretch/slim
6+ - VERSION=1.35.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.18.3
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.34.2
6+ RUST_VERSION=1.35.0
77
88RUN set -eux; \
99 dpkgArch="$(dpkg --print-architecture)" ; \
1010 case "${dpkgArch##*-}" in \
11- amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='31c0581e3af128f7374d8439068475d11be60ce7b2301684a4cab81a39c76cb6 ' ;; \
12- armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='7fff409910faa28dc846547102a0a912020c357eb483b5b74e2740864b290896 ' ;; \
13- arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='168191448a932e13147686565e46803cca6b8d2b016a8761375c4d3ee3d2ac87 ' ;; \
14- i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='a6c7e20f71e13abd40917d76c023253501a35daacdeed31f9eaf8ecfd5d78286 ' ;; \
11+ amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='a46fe67199b7bcbbde2dcbc23ae08db6f29883e260e23899a88b9073effc9076 ' ;; \
12+ armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='6af5abbbae02e13a9acae29593ec58116ab0e3eb893fa0381991e8b0934caea1 ' ;; \
13+ arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='51862e576f064d859546cca5f3d32297092a850861e567327422e65b60877a1b ' ;; \
14+ i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='91456c3e6b2a3067914b3327f07bc182e2a27c44bff473263ba81174884182be ' ;; \
1515 *) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
1616 esac; \
17- url="https://static.rust-lang.org/rustup/archive/1.18.2 /${rustArch}/rustup-init" ; \
17+ url="https://static.rust-lang.org/rustup/archive/1.18.3 /${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.34.2
6+ RUST_VERSION=1.35.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='31c0581e3af128f7374d8439068475d11be60ce7b2301684a4cab81a39c76cb6 ' ;; \
19- armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='7fff409910faa28dc846547102a0a912020c357eb483b5b74e2740864b290896 ' ;; \
20- arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='168191448a932e13147686565e46803cca6b8d2b016a8761375c4d3ee3d2ac87 ' ;; \
21- i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='a6c7e20f71e13abd40917d76c023253501a35daacdeed31f9eaf8ecfd5d78286 ' ;; \
18+ amd64) rustArch='x86_64-unknown-linux-gnu' ; rustupSha256='a46fe67199b7bcbbde2dcbc23ae08db6f29883e260e23899a88b9073effc9076 ' ;; \
19+ armhf) rustArch='armv7-unknown-linux-gnueabihf' ; rustupSha256='6af5abbbae02e13a9acae29593ec58116ab0e3eb893fa0381991e8b0934caea1 ' ;; \
20+ arm64) rustArch='aarch64-unknown-linux-gnu' ; rustupSha256='51862e576f064d859546cca5f3d32297092a850861e567327422e65b60877a1b ' ;; \
21+ i386) rustArch='i686-unknown-linux-gnu' ; rustupSha256='91456c3e6b2a3067914b3327f07bc182e2a27c44bff473263ba81174884182be ' ;; \
2222 *) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
2323 esac; \
24- url="https://static.rust-lang.org/rustup/archive/1.18.2 /${rustArch}/rustup-init" ; \
24+ url="https://static.rust-lang.org/rustup/archive/1.18.3 /${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.34.2 ]=' 1 1.34 latest'
5+ [1.35.0 ]=' 1 1.35 latest'
66)
77
88defaultDebianSuite=' stretch'
You can’t perform that action at this time.
0 commit comments