a container for using pylint on the comand line
184
pylint docker image works for files or modules that are in the ciurrent working directory or below
to use iteractively:
docker run -it --rm -v "`pwd`":/usr/app -w /usr/app daverick/pylint yourfile.py
if you want to use an alias:
alias pylint='docker run -it --rm -v "`pwd`":/usr/app -w /usr/app daverick/pylint pylint'
or use a bash script
#! /bin/bash
docker run --rm -v "`pwd`":/usr/app -w /usr/app daverick/pylint pylint $@
Content type
Image
Digest
Size
342.1 MB
Last updated
almost 8 years ago
docker pull daverick/pylint