Files
agentos/deploy/worker.Dockerfile
T
2026-07-31 17:54:01 +08:00

22 lines
425 B
Docker

FROM debian:bookworm-slim
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
acl \
bash \
ca-certificates \
coreutils \
diffutils \
findutils \
git \
grep \
jq \
python3 \
ripgrep \
sed \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir -p /workspace /agent
WORKDIR /workspace