OpenClawBot / Dockerfile.sandbox
darkfire514's picture
Upload 43 files
9e61dbf verified
raw
history blame contribute delete
285 Bytes
FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
ca-certificates \
curl \
git \
jq \
python3 \
ripgrep \
&& rm -rf /var/lib/apt/lists/*
CMD ["sleep", "infinity"]