From d0670c0c9fbfd073810b0dcb7809174f529372c3 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Thu, 30 Jan 2020 10:21:02 -0800 Subject: [PATCH] Switch to debian slim base for tests This makes improved builds speeds much faster since it supports wheels out of the box --- .drone.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 0efbffa..6320f79 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,9 +9,10 @@ workspace: steps: - name: test - image: python:3-alpine + image: python:3-slim commands: - - apk add bash shellcheck make gcc musl-dev libffi-dev openssl-dev + - apt-get update + - apt-get install --no-install-recommends make - pip install docker-compose - make all