X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/2f3fa1f6d0cbc2a3f31c7440c422da173b068e7b:/Dockerfile..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/static/gitweb.js diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 9542479..0000000 --- a/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"]