File: Dockerfile

package info (click to toggle)
black 20.8b1-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,756 kB
  • sloc: python: 97,001; makefile: 42; sh: 21
file content (8 lines) | stat: -rw-r--r-- 167 bytes parent folder | download
1
2
3
4
5
6
7
8
FROM python:3

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

RUN pip install --upgrade --no-cache-dir black

ENTRYPOINT /usr/local/bin/black --check --diff  .