add ruff and uv to arch toolbox
All checks were successful
Reese's Arch Toolbox / build-and-push-arch-toolbox (push) Successful in 16m58s

This commit is contained in:
2024-12-23 11:09:46 -06:00
parent 8ac2aa3250
commit 4afb5b26e8
2 changed files with 7 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
#!/bin/bash
# Build latest image
podman pull quay.io/toolbx/arch-toolbox:latest
podman build \
--no-cache \
-t gitea.reeseapps.com/services/arch-toolbox:debug \

View File

@@ -60,13 +60,16 @@ RUN pacman -S --noconfirm \
texlive-binextra \
texlive-fontsrecommended \
texlive-fontsextra \
code
code \
ruff
########################
##### Extra Apps #####
########################
# UV (Pyenv/Poetry replacement)
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
# Ollama
RUN curl -L https://ollama.com/download/ollama-linux-amd64.tgz -o ollama-linux-amd64.tgz && \
tar -C /usr -xzf ollama-linux-amd64.tgz && \