Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade the rust toolchain #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Containers for building rust applications

```bash
# in rust/build/
docker build -t quay.io/tarilabs/rust_tari-build-with-deps:nightly-2021-11-20 .
docker build -t quay.io/tarilabs/rust_tari-build-with-deps:nightly-2022-11-03 .

# in ndk-build/
docker build -t quay.io/tarilabs/rust-ndk:1.58.0_r21b .
docker build -t quay.io/tarilabs/rust-ndk:1.67.0_r21b .

# in sqlite-mobile/
docker build -t quay.io/tarilabs/sqlite-mobile:202201112328 .
Expand Down
2 changes: 1 addition & 1 deletion ndk-build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/tarilabs/rust_tari-build-with-deps:nightly-2021-11-20
FROM quay.io/tarilabs/rust_tari-build-with-deps:nightly-2022-11-03
ARG NDK_VERSION=r21b
ARG ANDROID_NDK_HOME=/opt/android-ndk

Expand Down
4 changes: 2 additions & 2 deletions rust/build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build image for the Tari project; includes SQLite, clippy, rustfmt and other development tools
FROM rust:1.58
FROM rust:1.66

ARG NIGHTLY_VERSION=nightly-2021-11-20
ARG NIGHTLY_VERSION=nightly-2022-11-03

# libs contains:
# https://www.sqlite.org/2019/sqlite-autoconf-3290000.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion sqlite-mobile/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/tarilabs/rust-ndk:1.58.0_r21b as base
FROM quay.io/tarilabs/rust-ndk:1.67.0_r21b as base

RUN apt-get update && apt-get install libdigest-sha3-perl

Expand Down
2 changes: 1 addition & 1 deletion ssl-mobile/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/tarilabs/rust-ndk:1.53.0_r21b as base
FROM quay.io/tarilabs/rust-ndk:1.67.0_r21b as base

# Dependency Downloads
ARG OPENSSL_VERSION=1.1.1h
Expand Down