From 1fbe914431ac9500ba8e8f07ee848e1ad551e772 Mon Sep 17 00:00:00 2001 From: Dovi Cowan Date: Tue, 21 Feb 2023 01:51:34 +0000 Subject: [PATCH] switch to bitnami/git image --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 3c98028..b8e7e66 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,7 +13,7 @@ environment: steps: - name: configure-environment pull: always - image: ubuntu:latest + image: bitnami/git:2.39.2 environment: SSH_PRIVATE_KEY: from_secret: dokku_ssh_key @@ -32,11 +32,11 @@ steps: - chmod 600 ~/.ssh/id_rsa - apt-get update && apt-get install git -y - name: add-remote - image: ubuntu:latest + image: bitnami/git:2.39.2 commands: - git remote add dokku dokku:$DOKKU_APP_NAME - name: push-to-dokku - image: ubuntu:latest + image: bitnami/git:2.39.2 commands: - git push dokku $BRANCH