From 734dd1d7663b6179a6d6c445b187a19321a089b6 Mon Sep 17 00:00:00 2001 From: Or Fleisher Date: Wed, 30 Jun 2021 15:53:32 -0400 Subject: [PATCH] Install Python in Docker image for build step --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index c8ae8d8..8753acc 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,8 @@ pipeline: build: image: docker:latest commands: - - python build.py + - apk add --no-cache --update python3 + - python3 build.py environment: CI: "true" when: