ARG PIXI_IMAGE

FROM $PIXI_IMAGE

USER root
# install git (usually required for setuptools_scm to determine python package version from git)
# could install with pixi global but takes more space
RUN apt update && apt install --yes git && apt clean --yes && apt autoremove --yes
USER PIXI_USER
