update solana to 1.8.1

This commit is contained in:
Chase Moran 2021-12-27 16:12:38 -05:00 committed by Evan Gray
parent 537495b4bb
commit 2b00826847
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ FROM docker.io/library/rust:1.49@sha256:a50165ea96983c21832578afb1c8c028674c965b
RUN apt-get update && apt-get install -yq libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang ncat
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
RUN curl -sSfL https://release.solana.com/v1.7.8/install | sh
RUN curl -sSfL https://release.solana.com/v1.8.1/install | sh
RUN rustup default nightly-2021-08-01
RUN rustup component add rustfmt

View File

@ -14,7 +14,7 @@ RUN apt-get update && \
rustup component add rustfmt && \
rustup default nightly-2021-08-01
RUN sh -c "$(curl -sSfL https://release.solana.com/v1.7.8/install)"
RUN sh -c "$(curl -sSfL https://release.solana.com/v1.8.1/install)"
ENV PATH="/root/.local/share/solana/install/active_release/bin:$PATH"