FROM python:3.13-alpine WORKDIR /opt/stargem COPY . . ENV PATH=$PATH:/root/.local/bin RUN pip install pipx \ && pipx install poetry \ && poetry build \ && pipx install dist/stargem*.whl WORKDIR /capsule ENTRYPOINT [ "stargem" ]