We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edcc63b commit 51a3cb7Copy full SHA for 51a3cb7
Dockerfile
@@ -1,4 +1,17 @@
1
-FROM rust:1.64.0-slim-bullseye
+FROM python:3.10-bullseye
2
+
3
+# Install Rust
4
+RUN curl https://sh.rustup.rs -sSf | bash -s -- -y
5
+ENV PATH="/root/.cargo/bin:${PATH}"
6
+RUN rustup toolchain install nightly
7
8
+# Install poetry
9
+RUN pip install poetry
10
+ENV PATH="${PATH}:/{$HOME}/.local/bin"
11
+RUN poetry config virtualenvs.in-project true
12
13
+# Install Solana Tool Suite
14
+RUN sh -c "$(curl -sSfL https://release.solana.com/v1.14.11/install)"
15
16
ADD . /agent
17
WORKDIR /agent
0 commit comments