FROM node:latest
WORKDIR /context

RUN apt update && \
	apt install -y git bash docker-cli && \
	npm install -g --ignore-scripts @earendil-works/pi-coding-agent && \
	pi install npm:pi-subagents

COPY * /context/
WORKDIR /workdir
ENTRYPOINT ["sleep", "infinity"]
