-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM gitpod/workspace-full | ||
|
||
USER gitpod | ||
RUN mkdir ~/tools | ||
RUN npm install --global @stacks/cli --prefix ~/tools | ||
|
||
ENV PATH="$HOME/tools/bin:$PATH" | ||
ENV PATH="$HOME/.cargo/bin:$PATH" | ||
|
||
RUN cd ~/tools; git clone https://github.com/lgalabru/clarity-repl --depth 1 | ||
RUN cd ~/tools/clarity-repl;cargo install --bin clarity-repl --path . | ||
|
||
RUN cd ~/tools; git clone https://github.com/blockstack/stacks-blockchain --depth 1 | ||
RUN cd ~/tools/stacks-blockchain/testnet/stacks-node;cargo build --release --bin stacks-node; | ||
|
||
USER root |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
|
||
tasks: | ||
- init: yarn | ||
|
||
vscode: | ||
extensions: | ||
- [email protected]:rBhb1NsIYs1/wpFyiyXNdA== | ||
- [email protected]:Tbu8dTz0i+/bgcKQTQ5b8g== |