set rust version requirement to 1.70

This commit is contained in:
GroovieGermanikus 2023-09-11 23:42:43 +02:00
parent e11f55cafd
commit 27b1fddab4
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.2
# Base image containing all binaries, deployed to gcr.io/mango-markets/mango-geyser-services:latest
FROM rust:1.71.1-bullseye as base
FROM rust:1.70.0-bullseye as base
RUN cargo install cargo-chef
RUN rustup component add rustfmt
RUN apt-get update && apt-get install -y clang cmake ssh

View File

@ -23,7 +23,7 @@
if [[ -n $RUST_STABLE_VERSION ]]; then
stable_version="$RUST_STABLE_VERSION"
else
stable_version=1.71.1
stable_version=1.70.0
fi
if [[ -n $RUST_NIGHTLY_VERSION ]]; then
@ -91,7 +91,7 @@ export rust_nightly_docker_image=solanalabs/rust-nightly:"$nightly_version"
if [[ -n $RUST_STABLE_VERSION ]]; then
stable_version="$RUST_STABLE_VERSION"
else
stable_version=1.71.1
stable_version=1.70.0
fi
if [[ -n $RUST_NIGHTLY_VERSION ]]; then