Move to arch based images

This commit is contained in:
2025-12-23 16:16:00 +01:00
parent f4f60a1418
commit cbe823c9e3
4 changed files with 11 additions and 9 deletions

View File

@@ -9,14 +9,14 @@ EXTRA_PKGS="$4"
if [ -n "$EXTRA_PKGS" ]; then
for pkg in $EXTRA_PKGS; do
echo "Install $pkg with apk"
apk add "$pkg"
echo "Install $pkg with pacman"
pacman -S "$pkg"
done
fi
if [ -n "$INSTALL_HELPERS" ]; then
if [ "$INSTALL_HELPERS" == "true" ]; then
apk add git
pacman -Sy git --noconfirm
CURR_DIR=$(pwd)
mkdir ~/projects/ || true
cd ~/projects/
@@ -33,4 +33,4 @@ fi
echo "latexmk with extra args $EXTRA_ARGS"
latexmk -pdf -latexoption=-file-line-error -latexoption=-interaction=nonstopmode $EXTRA_ARGS
latexmk -pdf -latexoption=-file-line-error -latexoption=-interaction=nonstopmode -shell-escape $EXTRA_ARGS