Docker image with flake8 python linter.
This repository was forked with the intent of -
- add an autobuild for dockerhub/gitlab-ci
- pin the python image to version 3.8.0
- pin the flake version to 3.7.9
For now the image can be found at https://hub.docker.com/r/d3banjan/flake8
- Docker
docker run -v $(pwd)/scripts:/scripts hoto/flake8:3.0.4 /scripts
- Docker Compose
#docker-compose.yml
version: '2'
services:
lint:
image: hoto/flake8:3.0.4
command: flake8 /scripts /tests
volumes:
- ./scripts:/scripts
- ./tests:/tests
- ./.flake8:/.flake8
- Gitlab CI Runner
#.gitlab-ci.yml
lint:
image: hoto/flake8:3.0.4
stage: lint
tags:
- dind
script:
- flake8 scripts/ tests/