Skip to content
Snippets Groups Projects

Resolve "Use Pylint"

Merged Mark requested to merge 50-use-pylint into master
Compare and
4 files
+ 54
0
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 6
0
FROM python:3.7-alpine
RUN apk add build-base git bc
COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
Loading