Files
routstrd/Dockerfile

12 lines
224 B
Docker

FROM oven/bun:1-slim
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build && bun install -g . && bun add -g @earendil-works/pi-coding-agent
EXPOSE 8008
CMD ["/bin/bash"]