This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use reqwest::Client; | |
use serde_json::json; | |
use solana_client::{ | |
client_error::{ClientError, ClientErrorKind, Result as ClientResult}, | |
nonblocking::rpc_client::RpcClient, | |
rpc_config::RpcSimulateTransactionConfig, | |
}; | |
use solana_program::instruction::Instruction; | |
use solana_sdk::{ | |
commitment_config::CommitmentConfig, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:bullseye AS base | |
ARG AGAVE_VERSION=2.0.15 | |
ARG RUST_VERSION=stable | |
RUN rm /bin/sh && ln -s /bin/bash /bin/sh | |
WORKDIR /workspace | |
RUN mkdir -pv "/workspace/bin" && echo 'echo test' > '/workspace/bin/test.sh' && chmod +x '/workspace/bin/test.sh' |