Files
spoon/docker/agent-worker.Dockerfile
T
Gabriel Brown f33f76d874
Build and Push Spoon Images / quality (push) Successful in 1m52s
Build and Push Spoon Images / build-images (push) Successful in 8m19s
Trying to build worker images
2026-06-22 20:29:10 -04:00

25 lines
459 B
Docker

FROM docker.io/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"]