From 99097a16ce3cdcaa19cea0c15bcfb35b49ff88d1 Mon Sep 17 00:00:00 2001 From: Albert Chen Date: Mon, 16 May 2022 18:13:58 -0700 Subject: [PATCH] chore: update anchor to 0.24.2 --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7a7b97c..93457ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ -FROM rust:1.59 +FROM rust:1.60 ARG SOLANA_VERSION=v1.9.14 -ARG ANCHOR_VERSION=v0.23.0 +ARG ANCHOR_VERSION=v0.24.2 RUN apt-get update -y RUN apt-get upgrade -y @@ -16,6 +16,8 @@ RUN cargo install --git https://github.com/project-serum/anchor --tag $ANCHOR_VE RUN curl -fsSL https://deb.nodesource.com/setup_17.x | bash - RUN apt-get install -y nodejs +RUN npm install --global yarn + COPY shell-exec.sh /bin/shell-exec RUN chmod +x /bin/shell-exec