Spaces:
Running
Running
File size: 285 Bytes
9e61dbf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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"]
|