From 584ad86f33edbd46f43870b969307da3c10570fa Mon Sep 17 00:00:00 2001 From: Kirby Date: Sat, 28 Nov 2020 18:36:20 +0100 Subject: [PATCH] switching to alpine python --- .drone.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index d11402e..86f6e4a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,8 +9,10 @@ platform: steps: - name: syntax pull: if-not-exists - image: python:3.7 + image: python:3.7-alpine commands: + - apk update + - apk add build-base + - pip3 install -U pylint - pip3 install -r requirements.txt - - apt install -y pylint - pylint *.py