X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3f68af9813542a5e277b7a51b316644241c372d7..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/gallery/Dockerfile diff --git a/.vim/bundle/black/gallery/Dockerfile b/.vim/bundle/black/gallery/Dockerfile new file mode 100644 index 00000000..7a18b7e9 --- /dev/null +++ b/.vim/bundle/black/gallery/Dockerfile @@ -0,0 +1,11 @@ +FROM python:3.8.2-slim + +# note: a single RUN to avoid too many image layers being produced +RUN apt-get update \ + && apt-get upgrade -y \ + && apt-get install git apt-utils -y \ + && git config --global user.email "black@psf.github.com" \ + && git config --global user.name "Gallery/Black" + +COPY gallery.py / +ENTRYPOINT ["python", "/gallery.py"]