From 65764d78b42ee5972c4ce340e174772b012f17fa Mon Sep 17 00:00:00 2001 From: Mathieu Broillet Date: Fri, 9 Jun 2023 23:27:03 +0200 Subject: [PATCH] update drone to debian --- .drone.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2f0212b..898cb09 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,10 +4,12 @@ name: build_python_project steps: - name: build - image: python:alpine + #image: python:alpine + image: python:3.11-bullseye commands: - pip install -r requirements.txt - - apk add build-base patchelf + # - apk add build-base patchelf + - apt install build-essential patchelf -y - pip install nuitka - python -m nuitka --onefile run.py --include-data-dir=./resources=resources --output-filename="ProxmoxDeploy${DRONE_TAG##v}" - name: gitea_release