From 5437e40a15a447da6d9353470fed409c42a9df38 Mon Sep 17 00:00:00 2001 From: pictuga Date: Wed, 8 Sep 2021 22:07:21 +0200 Subject: [PATCH] drone: use alpine image (to benefit from pkgs) --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index e69bc05..b8c6da0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,8 +8,8 @@ steps: - pip install isort - isort --check-only --diff . - name: pylint - image: python:alpine + image: alpine commands: - - apk add --no-cache py3-lxml - - pip install . + - apk add --no-cache python3 py3-lxml py3-pip py3-wheel + - pip3 install --no-cache-dir . - pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8