2
Fork 0
dt-plugin-template/.ci/Dockerfile

10 lines
261 B
Docker

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