p2p/.ci/Dockerfile
2025-05-04 15:10:16 +02:00

11 lines
274 B
Docker

FROM rust-xwin
RUN set -eux; \
apt-get update; \
apt-get install --no-install-recommends -y \
git \
jq \
; \
sh -c "git config --global --add safe.directory '*'"; \
apt-get remove -y --auto-remove; \
rm -rf /var/lib/apt/lists/*;