File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
- # 0.2.0-rust-1.31.2 (unreleased)
1
+ # 0.2.0-rust-1.32.0 (unreleased)
2
2
3
- * Upgrade to Rust ` 1.13.2 `
3
+ * Upgrade to Rust [ ` 1.32.0 ` ] ( https://blog.rust-lang.org/2019/01/17/Rust-1.32.0.html )
4
4
5
5
# 0.2.0-rust-1.31.1
6
6
7
- * Upgrade to Rust ` 1.13.1 `
7
+ * Upgrade to Rust [ ` 1.13.1 ` ] ( https://blog.rust-lang.org/2018/12/20/Rust-1.31.1.html )
8
8
9
9
# 0.2.0-rust-1.31.0
10
10
Original file line number Diff line number Diff line change 1
- # https://github.com/ilianaw/rust-crowbar/issues/20
2
1
# https://github.com/lambci/docker-lambda#documentation
3
2
FROM lambci/lambda:build-provided
4
- RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.31.2
3
+ ARG RUST_VERSION
4
+ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUST_VERSION
5
5
ADD build.sh /usr/local/bin/
6
6
VOLUME ["/code" ]
7
7
WORKDIR /code
Original file line number Diff line number Diff line change 1
1
VERSION ?= 0.2.0
2
- RUST_VERSION ?= 1.31.2
2
+ RUST_VERSION ?= 1.32.0
3
3
REPO ?= softprops/lambda-rust
4
4
TAG ?= "$(REPO ) :$(VERSION ) -rust-$(RUST_VERSION ) "
5
5
@@ -8,5 +8,5 @@ publish: build
8
8
docker push $(REPO ) :latest
9
9
10
10
build :
11
- docker build -t $(TAG ) .
11
+ docker build --build-arg RUST_VERSION= $( RUST_VERSION ) - t $(TAG ) .
12
12
docker tag $(TAG ) $(REPO ) :latest
You can’t perform that action at this time.
0 commit comments