This commit is contained in:
Elijah McMorris 2023-06-19 14:05:30 -07:00
parent 0c2b30f348
commit 1bfbbaa826
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
2 changed files with 3 additions and 4 deletions

View file

@ -1,8 +1,8 @@
# https://mcr.microsoft.com/en-us/product/devcontainers/rust/about
FROM mcr.microsoft.com/devcontainers/rust:bullseye
FROM mcr.microsoft.com/devcontainers/rust:bookworm
RUN apt-get update && \
apt install -y build-essential xz-utils musl-tools musl-dev gcc-multilib pkg-config libssl-dev
apt install -y build-essential xz-utils musl-tools musl-dev gcc-multilib pkg-config libssl-dev mold
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" && \