openclaw / Dockerfile.sandbox
quinnz's picture
change port 18789 to 7860
3509093
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"]