split dockerfile locations and stuff

This commit is contained in:
Romane
2026-08-01 07:41:50 +02:00
parent aabc83281b
commit dd41a15b89
+3 -2
View File
@@ -1,10 +1,11 @@
FROM node:latest FROM node:latest
WORKDIR /workdir WORKDIR /context
RUN apt update && \ RUN apt update && \
apt install -y git bash docker-cli && \ apt install -y git bash docker-cli && \
npm install -g --ignore-scripts @earendil-works/pi-coding-agent && \ npm install -g --ignore-scripts @earendil-works/pi-coding-agent && \
pi install npm:pi-subagents pi install npm:pi-subagents
COPY * /workdir/ COPY * /context/
WORKDIR /workdir
ENTRYPOINT ["sleep", "infinity"] ENTRYPOINT ["sleep", "infinity"]