mirror of
https://github.com/Routstr/routstrd.git
synced 2026-07-22 12:22:20 +00:00
12 lines
224 B
Docker
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"]
|