Files
spoon/docker/agent-worker.Dockerfile
T
Gabriel Brown 2dfa97ee4f
Build and Push Next App / quality (push) Failing after 48s
Build and Push Next App / build-next (push) Has been skipped
Add agent workflows & stuff
2026-06-21 21:15:15 -05:00

25 lines
449 B
Docker

FROM oven/bun:1.3.10
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
ca-certificates \
curl \
docker.io \
git \
jq \
openssh-client \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json bun.lock* turbo.json ./
COPY apps ./apps
COPY packages ./packages
COPY tools ./tools
COPY scripts ./scripts
RUN bun install --frozen-lockfile
CMD ["bun", "apps/agent-worker/src/index.ts"]