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
2
2
services : docker
3
3
4
4
env :
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
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.
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
3
3
ENV RUSTUP_HOME=/usr/local/rustup \
4
4
CARGO_HOME=/usr/local/cargo \
5
5
PATH=/usr/local/cargo/bin:$PATH \
6
- RUST_VERSION=1.34.2
6
+ RUST_VERSION=1.35.0
7
7
8
8
RUN set -eux; \
9
9
dpkgArch="$(dpkg --print-architecture)" ; \
10
10
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 ' ;; \
15
15
*) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
16
16
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" ; \
18
18
wget "$url" ; \
19
19
echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
20
20
chmod +x rustup-init; \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM debian:stretch-slim
3
3
ENV RUSTUP_HOME=/usr/local/rustup \
4
4
CARGO_HOME=/usr/local/cargo \
5
5
PATH=/usr/local/cargo/bin:$PATH \
6
- RUST_VERSION=1.34.2
6
+ RUST_VERSION=1.35.0
7
7
8
8
RUN set -eux; \
9
9
apt-get update; \
@@ -15,13 +15,13 @@ RUN set -eux; \
15
15
; \
16
16
dpkgArch="$(dpkg --print-architecture)" ; \
17
17
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 ' ;; \
22
22
*) echo >&2 "unsupported architecture: ${dpkgArch}" ; exit 1 ;; \
23
23
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" ; \
25
25
wget "$url" ; \
26
26
echo "${rustupSha256} *rustup-init" | sha256sum -c -; \
27
27
chmod +x rustup-init; \
Original file line number Diff line number Diff line change 2
2
set -Eeuo pipefail
3
3
4
4
declare -A aliases=(
5
- [1.34.2 ]=' 1 1.34 latest'
5
+ [1.35.0 ]=' 1 1.35 latest'
6
6
)
7
7
8
8
defaultDebianSuite=' stretch'
You can’t perform that action at this time.
0 commit comments