mirror of
https://github.com/NexVeridian/ark-invest-api-rust.git
synced 2025-09-02 09:59:11 +00:00
1.0.0
This commit is contained in:
commit
3a34f6c1a3
12 changed files with 705 additions and 0 deletions
17
.devcontainer/Dockerfile
Normal file
17
.devcontainer/Dockerfile
Normal file
|
@ -0,0 +1,17 @@
|
|||
FROM mcr.microsoft.com/devcontainers/rust:bullseye
|
||||
|
||||
RUN rustup target add x86_64-unknown-linux-musl && \
|
||||
apt-get update && \
|
||||
apt install -y build-essential xz-utils musl-tools musl-dev gcc-multilib && \
|
||||
rustup update
|
||||
|
||||
RUN LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+') && \
|
||||
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz" && \
|
||||
sudo tar xf lazygit.tar.gz -C /usr/local/bin lazygit && \
|
||||
rm -rf lazygit.tar.gz
|
||||
|
||||
RUN BTOP_VERSION=$(curl -s "https://api.github.com/repos/aristocratos/btop/releases/latest" | grep -Po '"tag_name": "v\K[0-9.]+') && \
|
||||
wget "https://github.com/aristocratos/btop/releases/download/${BTOP_VERSION}/btop-x86_64-linux-musl.tbz" && \
|
||||
sudo tar -xvf btop-x86_64-linux-musl.tbz && \
|
||||
cd btop && ./install.sh && cd .. && \
|
||||
rm -rf btop-x86_64-linux-musl.tbz btop
|
Loading…
Add table
Add a link
Reference in a new issue