diff --git a/Dockerfile b/Dockerfile index a5929d2..4921eb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,11 @@ FROM node:latest -WORKDIR /workdir +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 * /workdir/ +COPY * /context/ +WORKDIR /workdir ENTRYPOINT ["sleep", "infinity"]