melbot / Dockerfile.sandbox
amos-fernandes's picture
Upload 4501 files
3a65265 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"]