X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/dc71922c768e543c9c3bbb1db5ea6d7fa801a814..43b53a034c9e3ada9295bf7f93be473b66b74f75:/.vim/bundle/black/Dockerfile diff --git a/.vim/bundle/black/Dockerfile b/.vim/bundle/black/Dockerfile deleted file mode 100644 index 9542479e..00000000 --- a/.vim/bundle/black/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -FROM python:3-slim - -RUN mkdir /src -COPY . /src/ -RUN pip install --no-cache-dir --upgrade pip setuptools wheel \ - && apt update && apt install -y git \ - && cd /src \ - && pip install --no-cache-dir .[colorama,d] \ - && rm -rf /src \ - && apt remove -y git \ - && apt autoremove -y \ - && rm -rf /var/lib/apt/lists/* - -CMD ["black"]