From 06b52b3b2a15ea31c9a94a18c9922742bc25587a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Floure?= Date: Thu, 9 Jun 2022 08:54:13 +0200 Subject: [PATCH] Pin build image to Alpine 3.15 --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index c59d91a..09defc5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -4,7 +4,7 @@ name: default steps: - name: build-release - image: alpine:latest + image: alpine:3.15 environment: MIX_ENV: prod commands: @@ -17,7 +17,7 @@ steps: - cd _build/prod/rel - tar czf "ha-handler-$(git describe --exact-match --tags $(git log -n1 --pretty='%h') || git rev-parse HEAD).tar.gz" ha_handler/ - name: publish-release-archive - image: alpine:latest + image: alpine:3.15 environment: LFTP_PASSWORD: from_secret: ssh_password