bashkirtsevich-llc / python3.9.2-flake8

python v 3.9.2 with flake8 docker image

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Flake8 lint tool for python 3.9.2

Docker image based on python:3.9.2-alpine docker image, contains only flake8 tool for using in CI/CD scripts.

Dockerhub link

Example usage with gitlab docker runner:

stages:
  - lint
  - build
  - etc
  
lint merge request:
  stage: lint
  image: bashkirtsevich/python3.9.2-flake8:alpine
  tags:
    - runner-tag
  script:
    - flake8 --ignore=E501,F401 .
  only:
    - merge_requests

...

About

python v 3.9.2 with flake8 docker image


Languages

Language:Dockerfile 100.0%