From dd41a15b89fe70257ed0a873371c690464a595e9 Mon Sep 17 00:00:00 2001 From: Romane <122701716+rom-vtn@users.noreply.github.com> Date: Sat, 1 Aug 2026 07:41:50 +0200 Subject: [PATCH] split dockerfile locations and stuff --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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"]